mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +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: {
|
||||
if (refreshing) {
|
||||
if (prefs.credentialStatus === CloudStatus.CS_VERIFIED) {
|
||||
console.log("User pulled down dive list - syncing with cloud storage")
|
||||
detailsWindow.endEditMode()
|
||||
manager.saveChangesCloud(true)
|
||||
console.log("done syncing, turn off spinner")
|
||||
refreshing = false
|
||||
} else {
|
||||
console.log("sync with cloud storage requested, but credentialStatus is " + prefs.credentialStatus)
|
||||
|
@ -412,7 +410,6 @@ Kirigami.ScrollablePage {
|
|||
placeholderText: "Full text search"
|
||||
onAccepted: {
|
||||
manager.setFilter(text)
|
||||
console.log("back from setFilter")
|
||||
}
|
||||
onEnabledChanged: {
|
||||
// reset the filter when it gets toggled
|
||||
|
@ -452,7 +449,6 @@ Kirigami.ScrollablePage {
|
|||
section.labelPositioning: ViewSection.CurrentLabelAtStart | ViewSection.InlineLabels
|
||||
onModelChanged: {
|
||||
numShownText = diveModel.shown()
|
||||
console.log("update number shown to " + numShownText)
|
||||
}
|
||||
Connections {
|
||||
target: detailsWindow
|
||||
|
|
Loading…
Reference in a new issue