mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
hide the overlay on action triggered
This commit is contained in:
parent
04fc93b95e
commit
0ea412cc8f
1 changed files with 8 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue