diff --git a/shell/package/contents/configuration/LatteDockConfiguration.qml b/shell/package/contents/configuration/LatteDockConfiguration.qml index d77cc63d8..761bc3eba 100644 --- a/shell/package/contents/configuration/LatteDockConfiguration.qml +++ b/shell/package/contents/configuration/LatteDockConfiguration.qml @@ -239,6 +239,14 @@ FocusScope { text: i18n("Advanced") Layout.alignment: Qt.AlignRight opacity: plasmoid.configuration.advanced ? 1 : 0.3 + + MouseArea { + anchors.fill: parent + onClicked: { + plasmoid.configuration.advanced = !advancedSwitch.checked; + advancedSwitch.checked = plasmoid.configuration.advanced; + } + } } Switch {