default value of View.backAction removed
authorTomasz Olszak <olszak.tomasz@gmail.com>
Wed, 26 Jun 2013 20:11:27 +0000 (20:11 +0000)
committerJarosław Staniek <staniek@kde.org>
Wed, 26 Jun 2013 20:15:46 +0000 (22:15 +0200)
Change-Id: I86055a428cef31a382c5143662e48d4bb571442e
Reviewed-by: Jarosław Staniek <staniek@kde.org>
examples/twitter/content/TwitterView.qml
src/controls/View.qml

index fda2740..fd04972 100644 (file)
@@ -58,4 +58,5 @@ View {
             flickableItem: listView
         }
     }
+    backAction.onTriggered: Qt.quit()
 }
index 586ec38..b717a73 100644 (file)
@@ -45,6 +45,6 @@ Control {
     ToolBar { id: prvToolBar; view: root }
     Action {
         id: prvBackAction
-        onTriggered: { console.debug("Quit!"); Qt.quit(); }
+//        onTriggered: { console.debug("Quit!"); Qt.quit(); }
     }
 }