diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-10-27 07:17:33 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-27 07:17:51 -0700 |
commit | 01cd2e224f4648023a57aa688f2403ca78a88390 (patch) | |
tree | c6963bd15127b918eaf7d0bdde3830b5df8067de /mobile-widgets | |
parent | 4461b479655a40d46b5f900ca227d30310812891 (diff) | |
download | subsurface-01cd2e224f4648023a57aa688f2403ca78a88390.tar.gz |
QML UI: we don't need Controls 2.4
In commit 99c06dec3d ("Mobile/filtering: simple busy indicator") we switched to
Controls 2.4 which requires Qt 5.11. Revert that one line of the commit as it
isn't necessary.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index 9f6321d55..89b0c679f 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 import QtQuick 2.6 -import QtQuick.Controls 2.4 as Controls +import QtQuick.Controls 2.2 as Controls import QtQuick.Layouts 1.2 import QtQuick.Window 2.2 import QtQuick.Dialogs 1.2 |