summaryrefslogtreecommitdiff
path: root/examples/quickcontrols/extras/flat/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols/extras/flat/main.qml')
-rw-r--r--examples/quickcontrols/extras/flat/main.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/quickcontrols/extras/flat/main.qml b/examples/quickcontrols/extras/flat/main.qml
index d91c2063..661225eb 100644
--- a/examples/quickcontrols/extras/flat/main.qml
+++ b/examples/quickcontrols/extras/flat/main.qml
@@ -48,6 +48,7 @@
**
****************************************************************************/
+import QtQml 2.14 as Qml
import QtQuick 2.4
import QtQuick.Layouts 1.0
import QtQuick.Controls 1.4
@@ -138,11 +139,12 @@ ApplicationWindow {
height: parent.height
// Don't let the menus become visible when resizing the window
- Binding {
+ Qml.Binding {
target: controlsMenu
property: "x"
value: container.x - controlsMenu.width
when: !xBehavior.enabled && !xNumberAnimation.running && currentMenu == -1
+ restoreMode: Binding.RestoreBinding
}
Behavior on x {