author | hrw <hrw> | 2006-01-17 10:10:21 (UTC) |
---|---|---|
committer | hrw <hrw> | 2006-01-17 10:10:21 (UTC) |
commit | 6494eb0ba251e95091ba15f0aba8ad4717015922 (patch) (side-by-side diff) | |
tree | 8ad63fd4d69f043ab9bd0689e1f3b2b369cf8327 | |
parent | 50b379b4637c80273b6f5397c9c20db78410f125 (diff) | |
download | opie-6494eb0ba251e95091ba15f0aba8ad4717015922.zip opie-6494eb0ba251e95091ba15f0aba8ad4717015922.tar.gz opie-6494eb0ba251e95091ba15f0aba8ad4717015922.tar.bz2 |
Opie-console fallback to FixedFont settings from qpe.conf in config
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | noncore/apps/opie-console/terminalwidget.cpp | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -18,8 +18,9 @@ * n.a. - added patch to build QT/E 2.3.10 with gcc 4.x.x (hrw) * n.a. - make blue-pin UI resizable to looks good in any resolution (hrw) * n.a. - fix a problem with vCard send to Sony Ericsson k600i (ar) * 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) 2005-09-11 Opie 1.2.1 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,5 +1,6 @@ #include "terminalwidget.h" +#include <qpe/config.h> /* QT */ #include <qlabel.h> #include <qcheckbox.h> @@ -150,10 +151,12 @@ void TerminalWidget::load( const Profile& prof ) { default: break; }; + 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") ); // switch( fontsize ) { // case Profile::Micro: // m_sizeSmall->setChecked(true ); |