summaryrefslogtreecommitdiff
authorkergoth <kergoth>2003-01-24 04:16:17 (UTC)
committer kergoth <kergoth>2003-01-24 04:16:17 (UTC)
commit067166880b657925d95ddd688099e56b1463fba8 (patch) (side-by-side diff)
tree616a36f012cc345f7566eb9c5d47df7d0bb22b0e
parenta50448ae6d0ea041abb7c396c9dddf197ca6f125 (diff)
downloadopie-067166880b657925d95ddd688099e56b1463fba8.zip
opie-067166880b657925d95ddd688099e56b1463fba8.tar.gz
opie-067166880b657925d95ddd688099e56b1463fba8.tar.bz2
I dont know why we were defaulting to fixed... *shudders*.. but we default to smallsmooth now.
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--inputmethods/multikey/keyboard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/inputmethods/multikey/keyboard.cpp b/inputmethods/multikey/keyboard.cpp
index c22fbb1..bded447 100644
--- a/inputmethods/multikey/keyboard.cpp
+++ b/inputmethods/multikey/keyboard.cpp
@@ -48,17 +48,17 @@ Keyboard::Keyboard(QWidget* parent, const char* _name, WFlags f) :
unicode(-1), qkeycode(0), modifiers(0), schar(0), mchar(0), echar(0),
configdlg(0)
{
// get the default font
Config *config = new Config( "qpe" );
config->setGroup( "Appearance" );
- QString familyStr = config->readEntry( "FontFamily", "fixed" );
+ QString familyStr = config->readEntry( "FontFamily", "smallsmooth" );
delete config;
config = new Config("multikey");
config->setGroup ("general");
usePicks = config->readBoolEntry ("usePickboard", 0); // default closed
useRepeat = config->readBoolEntry ("useRepeat", 1);
delete config;