From 1e8d27d05f624234bc755a6a610d325615c8fcb7 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Thu, 31 Mar 2022 21:34:09 -0600 Subject: [PATCH] applets/systemtray: Use Kirigami font properties in settings window This thing isn't using Plasma Components, so it shouldn't get its font sizing stuff from PlasmaCore. --- applets/systemtray/package/contents/ui/ConfigGeneral.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applets/systemtray/package/contents/ui/ConfigGeneral.qml b/applets/systemtray/package/contents/ui/ConfigGeneral.qml index 4c3334c74..415215e4e 100644 --- a/applets/systemtray/package/contents/ui/ConfigGeneral.qml +++ b/applets/systemtray/package/contents/ui/ConfigGeneral.qml @@ -37,7 +37,7 @@ ColumnLayout { QQC2.Label { visible: Kirigami.Settings.tabletMode text: i18n("Automatically enabled when in tablet mode") - font: PlasmaCore.Theme.smallestFont + font: Kirigami.Theme.smallFont } Item { @@ -80,7 +80,7 @@ ColumnLayout { QQC2.Label { visible: Kirigami.Settings.tabletMode text: i18nc("@info:usagetip under a combobox when tablet mode is on", "Automatically set to Large when in tablet mode") - font: PlasmaCore.Theme.smallestFont + font: Kirigami.Theme.smallFont } } }