This commit is contained in:
pika 2025-06-16 20:56:32 +02:00
parent d711bc59e9
commit fd04b21188
4 changed files with 174 additions and 13 deletions

View file

@ -87,6 +87,17 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
anchors.topMargin: Appearance.padding.large
MouseArea {
anchors.fill: parent
onClicked: {
// Toggle the activation widget visibility
const v = Visibilities.screens[QsWindow.window.screen];
if (v) {
v.isActivationWidgetVisible = !v.isActivationWidgetVisible;
}
}
}
}
StyledRect {