summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/themeeditor/graphics/rbscreen.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/utils/themeeditor/graphics/rbscreen.cpp b/utils/themeeditor/graphics/rbscreen.cpp
index c212a6c1fc..df72d5005b 100644
--- a/utils/themeeditor/graphics/rbscreen.cpp
+++ b/utils/themeeditor/graphics/rbscreen.cpp
@@ -73,7 +73,13 @@ RBScreen::RBScreen(const RBRenderInfo& info, bool remote,
73 } 73 }
74 } 74 }
75 75
76 fonts.insert(0, new RBFont("Nothin'")); 76 fonts.insert(0, new RBFont("Default"));
77 QString defaultFont = settings->value("font", "");
78 if(defaultFont != "")
79 {
80 defaultFont.replace("/.rockbox", settings->value("themebase", ""));
81 fonts.insert(1, new RBFont(defaultFont));
82 }
77 83
78 if(parent == 0) 84 if(parent == 0)
79 { 85 {