simplify tooltips texts in ConfigOverlay

pull/6/head
Michail Vourlakos 6 years ago
parent 4d8933b8bb
commit 58f99c0c55

@ -394,7 +394,7 @@ MouseArea {
id: colorizingButton id: colorizingButton
checkable: true checkable: true
iconSource: "color-picker" iconSource: "color-picker"
tooltip: i18n("Enable/Disable painting for this applet") tooltip: i18n("Enable painting for this applet")
onCheckedChanged: { onCheckedChanged: {
currentApplet.userBlocksColorizing = !checked; currentApplet.userBlocksColorizing = !checked;
@ -406,7 +406,7 @@ MouseArea {
id: lockButton id: lockButton
checkable: true checkable: true
iconSource: checked ? "lock" : "unlock" iconSource: checked ? "lock" : "unlock"
tooltip: i18n("Enable/Disable parabolic effect for this applet") tooltip: i18n("Disable parabolic effect for this applet")
onCheckedChanged: { onCheckedChanged: {
currentApplet.lockZoom = checked; currentApplet.lockZoom = checked;

Loading…
Cancel
Save