author | hash <hash> | 2002-08-15 11:19:45 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-15 11:19:45 (UTC) |
commit | 04a632ea5dd5e5f5a696e53b9c7870247ccaa83c (patch) (unidiff) | |
tree | b17fab3cebe6316ef08240fb93670a9ab73d2185 /inputmethods/multikey/keyboard.cpp | |
parent | e7e645b74096ec754db314d2bfc04a1bbb8e1d00 (diff) | |
download | opie-04a632ea5dd5e5f5a696e53b9c7870247ccaa83c.zip opie-04a632ea5dd5e5f5a696e53b9c7870247ccaa83c.tar.gz opie-04a632ea5dd5e5f5a696e53b9c7870247ccaa83c.tar.bz2 |
made the keysize a little larger
Diffstat (limited to 'inputmethods/multikey/keyboard.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | inputmethods/multikey/keyboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inputmethods/multikey/keyboard.cpp b/inputmethods/multikey/keyboard.cpp index 1d91b82..b793391 100644 --- a/inputmethods/multikey/keyboard.cpp +++ b/inputmethods/multikey/keyboard.cpp | |||
@@ -455,7 +455,7 @@ void Keyboard::clearHighlight() | |||
455 | QSize Keyboard::sizeHint() const | 455 | QSize Keyboard::sizeHint() const |
456 | { | 456 | { |
457 | QFontMetrics fm=fontMetrics(); | 457 | QFontMetrics fm=fontMetrics(); |
458 | int keyHeight = fm.lineSpacing(); | 458 | int keyHeight = fm.lineSpacing() + 2; |
459 | 459 | ||
460 | return QSize( 240, keyHeight * 5 + (usePicks ? picks->sizeHint().height() : 0) + 1); | 460 | return QSize( 240, keyHeight * 5 + (usePicks ? picks->sizeHint().height() : 0) + 1); |
461 | } | 461 | } |