marcin
2014-07-14 16:40:04 +02:00
parent 49bb4516f2
commit 95cec0e2fd
4 changed files with 9 additions and 3 deletions

View File

@@ -93,6 +93,8 @@ Item {
hoverEnabled: true
onEntered: dropdown.expanded = true
onExited: dropdown.expanded = false
preventStealing: true
z: 1
Item {
id: dropArea

View File

@@ -62,7 +62,10 @@ Row {
id: minimizeArea
anchors.fill: parent
hoverEnabled: true
onClicked: appWindow.visibility = Window.Minimized
onClicked: {
appWindow.visible = false
appWindow.visibility = Window.Minimized
}
}
}