diff options
author | Marco Martin <notmart@gmail.com> | 2017-03-31 16:15:14 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-04-01 09:35:51 +0200 |
commit | 751626eec574363ef694e1301744704915e6b2ea (patch) | |
tree | feebeca13c2405cf9a5501435bd85b9acf360b7f /mobile-widgets/qml/DiveDetailsView.qml | |
parent | 34a42d7f04319973cbecfcc3b21c6bf8b29f2a22 (diff) | |
download | subsurface-751626eec574363ef694e1301744704915e6b2ea.tar.gz |
QML UI: Fully port dive edit to Kirigami2
Completely adapt to the api changes of OverlaySheet in Kirigami2
in order to achieve the same look and behavior for the dive
edits that had with kirigami1
Port most components to QtQuickContrls2, except comboboxes
in the dive edit sheet that will need a new control type
Signed-off-by: Marco Martin <notmart@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/DiveDetailsView.qml')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index 79602e645..e0069b04a 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -2,12 +2,10 @@ import QtQuick 2.3 /* import QtWebView 1.0 */ -import QtQuick.Controls 1.2 -import QtQuick.Controls.Styles 1.2 import QtQuick.Dialogs 1.2 import QtQuick.Layouts 1.1 import org.subsurfacedivelog.mobile 1.0 -import org.kde.kirigami 1.0 as Kirigami +import org.kde.kirigami 2.0 as Kirigami Item { id: detailsView |