summaryrefslogtreecommitdiffstats
path: root/components/package
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-06-21 23:40:34 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-06-21 23:40:34 +0200
commit90d914e10aaa037819526e545ea9606f440adc82 (patch)
tree1da9bcce6088eb3e4dc276f4288f3541b235cda7 /components/package
parented23447fe0a163b6a9dfc5c0eb5560257231086c (diff)
downloadkube-90d914e10aaa037819526e545ea9606f440adc82.tar.gz
kube-90d914e10aaa037819526e545ea9606f440adc82.zip
almost pixelpefect maildir settings
Diffstat (limited to 'components/package')
-rw-r--r--components/package/contents/ui/OverlayDialog.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/package/contents/ui/OverlayDialog.qml b/components/package/contents/ui/OverlayDialog.qml
index 1138c78c..226ed79d 100644
--- a/components/package/contents/ui/OverlayDialog.qml
+++ b/components/package/contents/ui/OverlayDialog.qml
@@ -27,6 +27,10 @@ import org.kube.framework.domain 1.0 as KubeFramework
27Item { 27Item {
28 id: root 28 id: root
29 29
30 function closeDialog() {
31 root.destroy();
32 }
33
30 Rectangle { 34 Rectangle {
31 id: background 35 id: background
32 anchors.fill: parent 36 anchors.fill: parent
@@ -38,7 +42,7 @@ Item {
38 MouseArea { 42 MouseArea {
39 anchors.fill: parent 43 anchors.fill: parent
40 onClicked: { 44 onClicked: {
41 root.destroy() 45 root.closeDialog()
42 } 46 }
43 } 47 }
44 48