X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fqml%2FConfigParametersComponent.qml;h=61a1a13a018c917d072d422b3089a0c852027746;hb=526c6066678d5eaa6ca355ee7c2073b83eab7e81;hp=c1d7b830e4c4f9acf829a98882e2b31fcf9e57aa;hpb=5454990e804ec6a741fffe545ec9dbf2bc3c781a;p=marketstoday diff --git a/src/qml/ConfigParametersComponent.qml b/src/qml/ConfigParametersComponent.qml index c1d7b83..61a1a13 100644 --- a/src/qml/ConfigParametersComponent.qml +++ b/src/qml/ConfigParametersComponent.qml @@ -1,5 +1,5 @@ /* -@version: 0.2 +@version: 0.4 @author: Sudheer K. @license: GNU General Public License */ @@ -42,7 +42,7 @@ Item { configParametersComponent.updateFreqMin = parseInt(value); } value = DBUtility.getSetting("UpdateWeekdaysOnly"); - if (!value || value == "0.0" || value === ""){ + if (!value || value == "0.0" || value === ""|| !configParametersComponent.updateFreqEnabled){ configParametersComponent.updateWeekdaysOnly = false; } else{ @@ -157,7 +157,7 @@ Item { height: 50 horizontalAlignment: Text.AlignLeft; verticalAlignment: Text.AlignVCenter font.pixelSize: 22; font.bold: true; elide: Text.ElideRight; color: "#B8B8B8"; style: Text.Raised; styleColor: "black" - text: "Auto-Update" + text: "Auto-Update *" } Rectangle { @@ -295,6 +295,22 @@ Item { } */ } - //Here + + Rectangle{ + id: footerText + width: parent.width + height: 25 + color: "#343434" + anchors.bottom: parent.bottom + Text { + id: footerMessage + anchors.fill: parent + text: "* Quotes will be auto-updated only when the application/widget is running." + horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignVCenter + width: parent.width; font.pixelSize: 12; elide: Text.ElideRight; + color: "#cccccc" + style: Text.Raised; styleColor: "black" + } + } } }