Kirigami2 changed a few things, and we stopped makign it work on subsurface a long time ago. With this patch, it runs, but I didn't tested extensively.
From 4879747963563d172e1a891b0dd7d08aaee82915 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava <[email protected]> Date: Tue, 27 Dec 2016 18:36:02 +0100 Subject: [PATCH] Remove opacity calls
ApplicationWindow has no Opacity calls no more. Signed-off-by: Tomaz Canabrava <[email protected]> --- mobile-widgets/qml/main.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 1c0fd3c2..753e1d4b 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -52,7 +52,9 @@ Kirigami.ApplicationWindow { } visible: false - opacity: 0 + + // TODO: Verify where the opacity went to. + // opacity: 0 function returnTopPage() { for (var i=stackView.depth; i>1; i--) { @@ -388,10 +390,12 @@ Kirigami.ApplicationWindow { rootItem.opacity = 1 pageStack.defaultColumnWidth = Kirigami.Units.gridUnit * 28 } + /* TODO: Verify where opacity went to. Behavior on opacity { NumberAnimation { duration: 200 easing.type: Easing.OutQuad } } + */ } -- 2.11.0
_______________________________________________ subsurface mailing list [email protected] http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface
