From e43bdd238bc2ae91f4d340f44a7911247fda10fa Mon Sep 17 00:00:00 2001 From: Lemmy Date: Sun, 8 Feb 2026 11:02:11 -0500 Subject: [PATCH] fonts: added "System Default" entry in each combobox, to use the system one. --- Services/System/FontService.qml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Services/System/FontService.qml b/Services/System/FontService.qml index 8822be811..8d3a25b75 100644 --- a/Services/System/FontService.qml +++ b/Services/System/FontService.qml @@ -90,6 +90,15 @@ Singleton { availableFonts.clear(); monospaceFonts.clear(); + availableFonts.append({ + "key": Qt.application.font.family, + "name": I18n.tr("panels.indicator.system-default") + }); + monospaceFonts.append({ + "key": "monospace", + "name": I18n.tr("panels.indicator.system-default") + }); + for (var m = 0; m < allBatch.length; m++) availableFonts.append(allBatch[m]); for (var n = 0; n < monoBatch.length; n++)