summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Sebastian Kügler <sebas@kde.org>2015-11-29 22:24:04 +0100
committerGravatar Sebastian Kügler <sebas@kde.org>2015-11-29 22:24:34 +0100
commit609d138a490ed6eddfd4594775cef157f8ceaf61 (patch)
tree9bf08650fcf9f12c5bb4dcc79861f691f37c7261
parent33d589ff5cf3b7189abad40c2dd2f4f62b82c7bc (diff)
downloadsubsurface-609d138a490ed6eddfd4594775cef157f8ceaf61.tar.gz
sync with mobilecomponents' d3fa79b50b54
This fixes the flickering when the drag button hits the right edge. Signed-off-by: Sebastian Kügler <sebas@kde.org>
-rw-r--r--qt-mobile/qml/mobilecomponents/ApplicationWindow.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml b/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml
index 71980f9e6..220d0524c 100644
--- a/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml
+++ b/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml
@@ -20,6 +20,7 @@
import QtQuick 2.1
import QtQuick.Controls 1.3
import "private"
+import org.kde.plasma.mobilecomponents 0.2
/**
* A window that provides some basic features needed for all apps
@@ -73,6 +74,9 @@ ApplicationWindow {
contextDrawer.parent = contentItem.parent;
}
+ width: Units.gridUnit * 25
+ height: Units.gridUnit * 30
+
property alias actionButton: __actionButton
ActionButton {
id: __actionButton