summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKimmo Ollila <kimmo.ollila@digia.com>2013-06-07 14:43:55 +0300
committerLasse Räihä <lasse.raiha@digia.com>2013-06-07 15:01:27 +0300
commit123aeaa756b74f886b64aa2fb157e908a8e24ec9 (patch)
tree95b71ec2774c2365bdf121076c8eef0644b51187
parent3c007a004b91d49515051a530d7cef69dc7a0cf2 (diff)
Show home button when help screen is open
Change-Id: I4f60ebc5faf8e09931b7dcfc4d776e04e5f437f2 Reviewed-by: Lasse Räihä <lasse.raiha@digia.com>
-rw-r--r--QtDemo/qml/QtDemo/NavigationPanel.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/QtDemo/qml/QtDemo/NavigationPanel.qml b/QtDemo/qml/QtDemo/NavigationPanel.qml
index 056dbbf..89020a5 100644
--- a/QtDemo/qml/QtDemo/NavigationPanel.qml
+++ b/QtDemo/qml/QtDemo/NavigationPanel.qml
@@ -40,7 +40,7 @@ Grid {
Button {
id: homeButton
- imageSource: app.navigationState === 0 ? "images/btn_help.png" : "images/btn_home.png"
+ imageSource: app.navigationState === 0 && !helpscreen.visible ? "images/btn_help.png" : "images/btn_home.png"
onClicked: {
if (app.navigationState===0){
helpscreen.show()