From 663c87bc6f3881091c04beb3ce447922945cf14e Mon Sep 17 00:00:00 2001 From: Jacopo De Simoi Date: Thu, 15 Sep 2016 11:40:09 +0100 Subject: [PATCH] Use default weight rather than normal weight Honor the choice of a user that has chosen a custom weight (e.g. light) as default weight REVIEW: 128702 --- applets/digital-clock/package/contents/ui/DigitalClock.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/digital-clock/package/contents/ui/DigitalClock.qml b/applets/digital-clock/package/contents/ui/DigitalClock.qml index 159eadfc2..b032fb378 100644 --- a/applets/digital-clock/package/contents/ui/DigitalClock.qml +++ b/applets/digital-clock/package/contents/ui/DigitalClock.qml @@ -406,7 +406,7 @@ Item { font { family: plasmoid.configuration.fontFamily || theme.defaultFont.family - weight: plasmoid.configuration.boldText ? Font.Bold : Font.Normal + weight: plasmoid.configuration.boldText ? Font.Bold : theme.defaultFont.weight italic: plasmoid.configuration.italicText pointSize: 1024 }