From cbcd344e90a82d8362fdcd13f5add26f519f3239 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Wed, 4 Jan 2017 19:38:46 +0200 Subject: [PATCH] visual zoom factor to percentage from decimal --- shell/contents/configuration/AppearanceConfig.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/contents/configuration/AppearanceConfig.qml b/shell/contents/configuration/AppearanceConfig.qml index ad3bbfa1c..65e865b8c 100644 --- a/shell/contents/configuration/AppearanceConfig.qml +++ b/shell/contents/configuration/AppearanceConfig.qml @@ -148,7 +148,8 @@ PlasmaComponents.Page{ PlasmaComponents.Label{ enabled: showBackground.checked - text: " "+Number(zoomSlider.value).toFixed(2) + //text: " "+Number(zoomSlider.value).toFixed(2) + text: " "+Number((zoomSlider.value*100)-100).toFixed(0)+"%" Layout.minimumWidth: theme.mSize(theme.defaultFont).width * 4 }