marcin
2014-07-17 13:14:27 +02:00
parent 98c2082808
commit c26e1376db
10 changed files with 26 additions and 24 deletions

View File

@@ -33,7 +33,7 @@ Rectangle {
anchors.top: parent.top
anchors.bottom: parent.bottom
width: height
color: appWindow.whatIsEnable || containsMouse ? "#6B0072" : "#000000"
color: containsMouse ? "#6B0072" : "#000000"
Image {
anchors.centerIn: parent
@@ -43,7 +43,9 @@ Rectangle {
MouseArea {
id: whatIsArea
anchors.fill: parent
onClicked: appWindow.whatIsEnable = !appWindow.whatIsEnable
onClicked: {
}
}
}