marcin 10 years ago
parent 49bb4516f2
commit 95cec0e2fd

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 3.1.2, 2014-07-13T14:09:13. -->
<!-- Written by QtCreator 3.1.2, 2014-07-13T17:44:06. -->
<qtcreator>
<data>
<variable>ProjectExplorer.Project.ActiveTarget</variable>

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

@ -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
}
}
}

@ -129,7 +129,7 @@ Rectangle {
spacing: 17
LineEdit {
width: 156
width: parent.width - (checkBox.width + sendButton.width + 2 * parent.spacing)
}
StandardButton {
@ -143,6 +143,7 @@ Rectangle {
}
CheckBox {
id: checkBox
text: qsTr("Add to Address book")
anchors.bottom: sendButton.bottom
}