-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | noncore/apps/opie-console/terminalwidget.cpp | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -21,2 +21,3 @@ * n.a. - add a patch to build Qt/E 2.3.10 on amd64 with gcc 4.x.x (ar) + * n.a. - Opie-console fallback to FixedFont settings from qpe.conf in config (hrw) diff --git a/noncore/apps/opie-console/terminalwidget.cpp b/noncore/apps/opie-console/terminalwidget.cpp index 907de1b..91d4986 100644 --- a/noncore/apps/opie-console/terminalwidget.cpp +++ b/noncore/apps/opie-console/terminalwidget.cpp @@ -1,2 +1,3 @@ #include "terminalwidget.h" +#include <qpe/config.h> @@ -153,4 +154,6 @@ void TerminalWidget::load( const Profile& prof ) { + Config qpecfg("qpe"); + qpecfg.setGroup("Appearance"); - m_fontSelector->setSelectedFont( prof.readEntry( "Font"), prof.readEntry( "FontStyle"), prof.readNumEntry( "FontSize" ), prof.readEntry( "FontCharset") ); + m_fontSelector->setSelectedFont( prof.readEntry( "Font", qpecfg.readEntry("FixedFontFamily")), prof.readEntry( "FontStyle", qpecfg.readEntry("FixedFontStyle")), prof.readNumEntry( "FontSize" , qpecfg.readNumEntry("FixedFontStyle")), prof.readEntry( "FontCharset") ); |