diff options
Diffstat (limited to 'qt-mobile/qml/mobilecomponents/ApplicationWindow.qml')
-rw-r--r-- | qt-mobile/qml/mobilecomponents/ApplicationWindow.qml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml b/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml index 220d0524c..ce5d02abd 100644 --- a/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml +++ b/qt-mobile/qml/mobilecomponents/ApplicationWindow.qml @@ -38,9 +38,9 @@ ApplicationWindow { property alias initialPage: __pageStack.initialPage /** - * The stack used to allocate the pages nd to manage the transitions + * The stack used to allocate the pages and to manage the transitions * between them. - * It's using a PageRow, while having the same aPI as PageStack, + * It's using a PageRow, while having the same API as PageStack, * it positions the pages as adjacent columns, with as many columns * as can fit in the screen. An handheld device would usually have a single * fullscreen column, a tablet device would have many tiled columns. @@ -57,11 +57,6 @@ ApplicationWindow { event.accepted = true; } } - onLastVisiblePageChanged: { - if (lastVisiblePage != null) { - pop(lastVisiblePage) - } - } } property AbstractDrawer globalDrawer |