forked from len0rd/rockbox
Theme Editor: Changed default font to monospaced, changed organization for the application to rockbox.org, moved tab bar in preferences dialog to the top of the window
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26677 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
42b065f04a
commit
24647bace9
4 changed files with 14 additions and 6 deletions
|
@ -92,7 +92,10 @@ void PreferencesDialog::loadFont()
|
|||
QSettings settings;
|
||||
settings.beginGroup("SkinDocument");
|
||||
|
||||
QVariant family = settings.value("fontFamily", QFont());
|
||||
QFont def("Monospace");
|
||||
def.setStyleHint(QFont::TypeWriter);
|
||||
|
||||
QVariant family = settings.value("fontFamily", def);
|
||||
int size = settings.value("fontSize", 12).toInt();
|
||||
|
||||
settings.endGroup();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue