diff --git a/shell/contents/configuration/AppearanceConfig.qml b/shell/contents/configuration/AppearanceConfig.qml index d1e2ad2a3..53ad06a15 100644 --- a/shell/contents/configuration/AppearanceConfig.qml +++ b/shell/contents/configuration/AppearanceConfig.qml @@ -139,7 +139,7 @@ PlasmaComponents.Page { PlasmaComponents.Label { text: proportionSizeSlider.value>=proportionSizeSlider.realMinimum ? - proportionSizeSlider.value.toFixed(1) + "%" : "---%" + proportionSizeSlider.value.toFixed(1) + "%" : "---%" horizontalAlignment: Text.AlignRight Layout.minimumWidth: theme.mSize(theme.defaultFont).width * 4 enabled: proportionSizeSlider.value >= proportionSizeSlider.realMinimum @@ -168,7 +168,7 @@ PlasmaComponents.Page { onPressedChanged: { if (!pressed) { - plasmoid.configuration.iconMargin = value; + plasmoid.configuration.iconMargin = value; } } } diff --git a/shell/contents/configuration/TasksConfig.qml b/shell/contents/configuration/TasksConfig.qml index a87a79326..5a8b8de74 100644 --- a/shell/contents/configuration/TasksConfig.qml +++ b/shell/contents/configuration/TasksConfig.qml @@ -75,6 +75,7 @@ PlasmaComponents.Page { Layout.leftMargin: units.smallSpacing * 2 text: i18n("Indicator for active window group") checked: plasmoid.configuration.dotsOnActive + tooltip: i18n("Grouped windows show both a line and a dot when \none of them is active") onClicked: { plasmoid.configuration.dotsOnActive = checked @@ -140,6 +141,8 @@ PlasmaComponents.Page { Layout.leftMargin: units.smallSpacing * 2 text: i18n("Show progress information for tasks") checked: plasmoid.configuration.smartLaunchersEnabled + tooltip: i18n("Show a beautiful progress animation e.g. when copying \nfiles with Dolphin") + onClicked: { plasmoid.configuration.smartLaunchersEnabled = checked diff --git a/shell/contents/configuration/TweaksConfig.qml b/shell/contents/configuration/TweaksConfig.qml index 4859b4e32..216d7801c 100644 --- a/shell/contents/configuration/TweaksConfig.qml +++ b/shell/contents/configuration/TweaksConfig.qml @@ -157,6 +157,7 @@ PlasmaComponents.Page { text: i18n("Alternative Session") checked: globalSettings.currentSession === Latte.Dock.AlternativeSession checkable: true + tooltip: i18n("Sometimes the current layout of your panels is not sufficient \nfor example when you are travelling. Latte provides you with a full \nalternative sessionn to work on.") onClicked: { if (globalSettings.currentSession === Latte.Dock.DefaultSession){ @@ -191,6 +192,8 @@ PlasmaComponents.Page { iconSource: "distribute-horizontal-x" text: i18n("Add Spacer") Layout.alignment: Qt.AlignLeft + tooltip: i18n("Add a spacer to separate applets") + onClicked: { dockConfig.addPanelSpacer(); }