diff options
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 11 |
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 |