aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2018-10-20 12:02:42 -0400
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-10-23 22:45:30 +0100
commit84822ebd2ff6eed032f3fd0822ba922811f1133e (patch)
tree46a3d041a16b159d1753edbc0ccfe86ba0a89f21 /mobile-widgets/qml
parentb0a0e1e3740232e1d83ed3ad5f46c241d7b4c25c (diff)
downloadsubsurface-84822ebd2ff6eed032f3fd0822ba922811f1133e.tar.gz
Mobile/filtering: remove redundant busy indicator on dive list
We should use the global one instead. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r--mobile-widgets/qml/DiveList.qml11
1 files changed, 0 insertions, 11 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml
index 489e6b42d..f158aaff1 100644
--- a/mobile-widgets/qml/DiveList.qml
+++ b/mobile-widgets/qml/DiveList.qml
@@ -19,7 +19,6 @@ Kirigami.ScrollablePage {
property color secondaryTextColor: subsurfaceTheme.secondaryTextColor
property int horizontalPadding: Kirigami.Units.gridUnit / 2 - Kirigami.Units.smallSpacing + 1
property string activeTrip
- property bool showBusy: false
property QtObject diveListModel: diveModel
property string numShownText
@@ -327,13 +326,6 @@ Kirigami.ScrollablePage {
}
}
- Controls.BusyIndicator {
- running: showBusy
- z: 10
- anchors.fill: parent
- anchors.margins: Kirigami.Units.gridUnit
- }
-
StartPage {
id: startPage
anchors.fill: parent
@@ -419,12 +411,9 @@ Kirigami.ScrollablePage {
text: ""
placeholderText: "Full text search"
onAccepted: {
- showBusy = true
- console.log("show busy")
rootItem.filterPattern = text
diveModel.setFilter(text)
console.log("back from setFilter")
- showBusy = false
}
onEnabledChanged: {
// reset the filter when it gets toggled