From 58f99c0c55f02ce086d6cbcff5976bd296e8454f Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Sat, 25 May 2019 11:14:38 +0300 Subject: [PATCH] simplify tooltips texts in ConfigOverlay --- containment/package/contents/ui/editmode/ConfigOverlay.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containment/package/contents/ui/editmode/ConfigOverlay.qml b/containment/package/contents/ui/editmode/ConfigOverlay.qml index 35b7148ea..8d9c5423b 100644 --- a/containment/package/contents/ui/editmode/ConfigOverlay.qml +++ b/containment/package/contents/ui/editmode/ConfigOverlay.qml @@ -394,7 +394,7 @@ MouseArea { id: colorizingButton checkable: true iconSource: "color-picker" - tooltip: i18n("Enable/Disable painting for this applet") + tooltip: i18n("Enable painting for this applet") onCheckedChanged: { currentApplet.userBlocksColorizing = !checked; @@ -406,7 +406,7 @@ MouseArea { id: lockButton checkable: true iconSource: checked ? "lock" : "unlock" - tooltip: i18n("Enable/Disable parabolic effect for this applet") + tooltip: i18n("Disable parabolic effect for this applet") onCheckedChanged: { currentApplet.lockZoom = checked;