Revert hardcoded font change

This commit is contained in:
Ly-sec 2025-09-12 22:20:46 +02:00
parent be4a69f6e0
commit ff42244c6d
3 changed files with 3 additions and 126 deletions

View file

@ -203,17 +203,6 @@ Singleton {
BluetoothService.init()
}
// -----------------------------------------------------
// Update font defaults when system fonts are detected
function updateFontDefaults() {
if (FontService.systemFontsDetected) {
Logger.log("Settings", "Updating font defaults with detected system fonts")
adapter.ui.fontDefault = FontService.getSystemSansFont()
adapter.ui.fontFixed = FontService.getSystemMonospaceFont()
adapter.ui.fontBillboard = FontService.getSystemDisplayFont()
}
}
// -----------------------------------------------------
// Ensure directories exist before FileView tries to read files
Component.onCompleted: {
@ -224,9 +213,6 @@ Singleton {
// Mark directories as created and trigger file loading
directoriesCreated = true
// Connect to font service signal to update defaults when system fonts are detected
FontService.systemFontsDetected.connect(updateFontDefaults)
}
// Don't write settings to disk immediately
@ -429,9 +415,9 @@ Singleton {
// ui
property JsonObject ui: JsonObject {
property string fontDefault: FontService.getSystemSansFont()
property string fontFixed: FontService.getSystemMonospaceFont()
property string fontBillboard: FontService.getSystemDisplayFont()
property string fontDefault: "Roboto"
property string fontFixed: "DejaVu Sans Mono"
property string fontBillboard: "Inter"
property list<var> monitorsScaling: []
property bool idleInhibitorEnabled: false
}