psa: Moved auto update button down on settings page
authorYves Marcoz <yves@marcoz.org>
Thu, 2 Feb 2012 05:02:10 +0000 (21:02 -0800)
committerYves Marcoz <yves@marcoz.org>
Thu, 2 Feb 2012 05:02:10 +0000 (21:02 -0800)
FeedingIt-Sync/qml/SettingsPage.qml

index e9feae7..9bbb4c3 100644 (file)
@@ -49,12 +49,6 @@ Page {
             }
         }
 
-        Button {
-            text: "Automatic Updates"
-            onClicked: controller.openSettings()
-            anchors.horizontalCenter: parent.horizontalCenter
-        }
-
 //        SwitchSetting {
 //            text: qsTr("Auto-update every 6 hours (requires application running)")
 //            checked: controller.getBooleanSetting("autoupdate")
@@ -83,6 +77,12 @@ Page {
                 settings.webviewFontSize = value
             }
          }
+
+        Button {
+            text: "Set Automatic Updates"
+            onClicked: controller.openSettings()
+            anchors.horizontalCenter: parent.horizontalCenter
+        }
     }
 
 }