summaryrefslogtreecommitdiff
path: root/utils/themeeditor/graphics/rbscreen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/graphics/rbscreen.cpp')
-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 c212a6c..df72d50 100644
--- a/utils/themeeditor/graphics/rbscreen.cpp
+++ b/utils/themeeditor/graphics/rbscreen.cpp
@@ -73,7 +73,13 @@ RBScreen::RBScreen(const RBRenderInfo& info, bool remote,
}
}
- fonts.insert(0, new RBFont("Nothin'"));
+ fonts.insert(0, new RBFont("Default"));
+ QString defaultFont = settings->value("font", "");
+ if(defaultFont != "")
+ {
+ defaultFont.replace("/.rockbox", settings->value("themebase", ""));
+ fonts.insert(1, new RBFont(defaultFont));
+ }
if(parent == 0)
{