mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: remove some of the log file noise
A couple came from this series, others are much older. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1e6c5d002b
commit
51e7603d7e
1 changed files with 0 additions and 4 deletions
|
@ -26,10 +26,8 @@ Kirigami.ScrollablePage {
|
||||||
onRefreshingChanged: {
|
onRefreshingChanged: {
|
||||||
if (refreshing) {
|
if (refreshing) {
|
||||||
if (prefs.credentialStatus === CloudStatus.CS_VERIFIED) {
|
if (prefs.credentialStatus === CloudStatus.CS_VERIFIED) {
|
||||||
console.log("User pulled down dive list - syncing with cloud storage")
|
|
||||||
detailsWindow.endEditMode()
|
detailsWindow.endEditMode()
|
||||||
manager.saveChangesCloud(true)
|
manager.saveChangesCloud(true)
|
||||||
console.log("done syncing, turn off spinner")
|
|
||||||
refreshing = false
|
refreshing = false
|
||||||
} else {
|
} else {
|
||||||
console.log("sync with cloud storage requested, but credentialStatus is " + prefs.credentialStatus)
|
console.log("sync with cloud storage requested, but credentialStatus is " + prefs.credentialStatus)
|
||||||
|
@ -412,7 +410,6 @@ Kirigami.ScrollablePage {
|
||||||
placeholderText: "Full text search"
|
placeholderText: "Full text search"
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
manager.setFilter(text)
|
manager.setFilter(text)
|
||||||
console.log("back from setFilter")
|
|
||||||
}
|
}
|
||||||
onEnabledChanged: {
|
onEnabledChanged: {
|
||||||
// reset the filter when it gets toggled
|
// reset the filter when it gets toggled
|
||||||
|
@ -452,7 +449,6 @@ Kirigami.ScrollablePage {
|
||||||
section.labelPositioning: ViewSection.CurrentLabelAtStart | ViewSection.InlineLabels
|
section.labelPositioning: ViewSection.CurrentLabelAtStart | ViewSection.InlineLabels
|
||||||
onModelChanged: {
|
onModelChanged: {
|
||||||
numShownText = diveModel.shown()
|
numShownText = diveModel.shown()
|
||||||
console.log("update number shown to " + numShownText)
|
|
||||||
}
|
}
|
||||||
Connections {
|
Connections {
|
||||||
target: detailsWindow
|
target: detailsWindow
|
||||||
|
|
Loading…
Add table
Reference in a new issue