diff --git a/containments/homescreen/package/contents/ui/EditOverlay.qml b/containments/homescreen/package/contents/ui/EditOverlay.qml index ab2a1920..4eccbcd8 100644 --- a/containments/homescreen/package/contents/ui/EditOverlay.qml +++ b/containments/homescreen/package/contents/ui/EditOverlay.qml @@ -85,13 +85,19 @@ Rectangle { Layout.fillWidth: true Layout.fillHeight:true text: i18n("Wallpaper...") - onClicked: plasmoid.action("configure").trigger(); + onClicked: { + plasmoid.action("configure").trigger(); + editOverlay.opacity = 0; + } } PlasmaComponents.Button { Layout.fillWidth: true Layout.fillHeight:true text: i18n("Add Widgets...") - onClicked: plasmoid.action("add widgets").trigger(); + onClicked: { + plasmoid.action("add widgets").trigger(); + editOverlay.opacity = 0; + } } } }