From 8db7b8419abbf5d2a9aa5dafc2b6d0c6ce9b5ce3 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sat, 25 Oct 2025 18:30:24 -0400 Subject: [PATCH] remove font check --- Common/SettingsData.qml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/Common/SettingsData.qml b/Common/SettingsData.qml index 48f10bb7..5f0286bb 100644 --- a/Common/SettingsData.qml +++ b/Common/SettingsData.qml @@ -271,7 +271,6 @@ Singleton { Component.onCompleted: { if (!isGreeterMode) { loadSettings() - fontCheckTimer.start() initializeListModels() fprintdDetectionProcess.running = true } @@ -1884,27 +1883,6 @@ Singleton { id: rightWidgetsModel } - Timer { - id: fontCheckTimer - - interval: 3000 - repeat: false - onTriggered: { - var availableFonts = Qt.fontFamilies() - var missingFonts = [] - if (fontFamily === defaultFontFamily && !availableFonts.includes(defaultFontFamily)) - missingFonts.push(defaultFontFamily) - - if (monoFontFamily === defaultMonoFontFamily && !availableFonts.includes(defaultMonoFontFamily)) - missingFonts.push(defaultMonoFontFamily) - - if (missingFonts.length > 0) { - var message = "Missing fonts: " + missingFonts.join(", ") + ". Using system defaults." - ToastService.showWarning(message) - } - } - } - property Process testNotificationProcess testNotificationProcess: Process {