From c2bdfadb789e9798d022f7de57476166dd25a4f5 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Thu, 8 Aug 2019 16:42:10 +0300 Subject: [PATCH] user can now change title tooltips at all times --previously the user when the zoom factor was 1.0 the title tooltips was disabled. BUT as it appers there are plenty of cases that title tooltips can be shown when zoom factor = 1.0 so the user it is better to choose if wants them or not. --- shell/package/contents/configuration/pages/BehaviorConfig.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/package/contents/configuration/pages/BehaviorConfig.qml b/shell/package/contents/configuration/pages/BehaviorConfig.qml index 486008f9a..b11cb3c27 100644 --- a/shell/package/contents/configuration/pages/BehaviorConfig.qml +++ b/shell/package/contents/configuration/pages/BehaviorConfig.qml @@ -674,7 +674,7 @@ PlasmaComponents.Page { text: i18n("Show title tooltips on hovering") tooltip: i18n("Show thinner tooltips produced by Latte for items.\nThese tooltips are not drawn when applets zoom effect is disabled"); checked: plasmoid.configuration.titleTooltips - enabled: plasmoid.configuration.zoomLevel > 0 + //enabled: plasmoid.configuration.zoomLevel > 0 onClicked: { plasmoid.configuration.titleTooltips = !plasmoid.configuration.titleTooltips;