-rw-r--r-- | inputmethods/multikey/keyboard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inputmethods/multikey/keyboard.cpp b/inputmethods/multikey/keyboard.cpp index b793391..2a80f1e 100644 --- a/inputmethods/multikey/keyboard.cpp +++ b/inputmethods/multikey/keyboard.cpp | |||
@@ -50,28 +50,28 @@ Keyboard::Keyboard(QWidget* parent, const char* _name, WFlags f) : | |||
50 | { | 50 | { |
51 | // get the default font | 51 | // get the default font |
52 | Config *config = new Config( "qpe" ); | 52 | Config *config = new Config( "qpe" ); |
53 | config->setGroup( "Appearance" ); | 53 | config->setGroup( "Appearance" ); |
54 | QString familyStr = config->readEntry( "FontFamily", "fixed" ); | 54 | QString familyStr = config->readEntry( "FontFamily", "fixed" ); |
55 | delete config; | 55 | delete config; |
56 | 56 | ||
57 | config = new Config("multikey"); | 57 | config = new Config("multikey"); |
58 | config->setGroup ("pickboard"); | 58 | config->setGroup ("pickboard"); |
59 | usePicks = config->readBoolEntry ("open", "0"); // default closed | 59 | usePicks = config->readBoolEntry ("open", "0"); // default closed |
60 | delete config; | 60 | delete config; |
61 | 61 | ||
62 | setFont( QFont( familyStr, 8 ) ); | 62 | setFont( QFont( familyStr, 10 ) ); |
63 | 63 | ||
64 | picks = new KeyboardPicks( this ); | 64 | picks = new KeyboardPicks( this ); |
65 | picks->setFont( QFont( familyStr, 8 ) ); | 65 | picks->setFont( QFont( familyStr, 10 ) ); |
66 | picks->initialise(); | 66 | picks->initialise(); |
67 | if (usePicks) { | 67 | if (usePicks) { |
68 | 68 | ||
69 | QObject::connect( picks, SIGNAL(key(ushort,ushort,ushort,bool,bool) ), | 69 | QObject::connect( picks, SIGNAL(key(ushort,ushort,ushort,bool,bool) ), |
70 | this, SIGNAL(key(ushort,ushort,ushort,bool,bool)) ); | 70 | this, SIGNAL(key(ushort,ushort,ushort,bool,bool)) ); |
71 | 71 | ||
72 | } else picks->hide(); | 72 | } else picks->hide(); |
73 | 73 | ||
74 | keys = new Keys(); | 74 | keys = new Keys(); |
75 | 75 | ||
76 | repeatTimer = new QTimer( this ); | 76 | repeatTimer = new QTimer( this ); |
77 | connect( repeatTimer, SIGNAL(timeout()), this, SLOT(repeat()) ); | 77 | connect( repeatTimer, SIGNAL(timeout()), this, SLOT(repeat()) ); |