author | hash <hash> | 2002-08-27 07:41:59 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-27 07:41:59 (UTC) |
commit | 8760fbdfefe1b6c60400cdeee45a6ba892d40751 (patch) (unidiff) | |
tree | 50e8ad9d74c0332c5826a429abdeceb3142283b5 | |
parent | 2bd07423a53f1b564b898dc9cf4dfbd6f1e337da (diff) | |
download | opie-8760fbdfefe1b6c60400cdeee45a6ba892d40751.zip opie-8760fbdfefe1b6c60400cdeee45a6ba892d40751.tar.gz opie-8760fbdfefe1b6c60400cdeee45a6ba892d40751.tar.bz2 |
pixmaps centered better
-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 c3ee8f3..92ea896 100644 --- a/inputmethods/multikey/keyboard.cpp +++ b/inputmethods/multikey/keyboard.cpp | |||
@@ -194,7 +194,7 @@ void Keyboard::drawKeyboard(QPainter &p, int row, int col) | |||
194 | } | 194 | } |
195 | else | 195 | else |
196 | // center the image in the middle of the key | 196 | // center the image in the middle of the key |
197 | p.drawImage( x + (defaultKeyWidth * keyWidth - pix->width())/2, | 197 | p.drawImage( x + (defaultKeyWidth * keyWidth - pix->width())/2 + 1, |
198 | y + (keyHeight - pix->height())/2 + 1, | 198 | y + (keyHeight - pix->height())/2 + 1, |
199 | *pix ); | 199 | *pix ); |
200 | 200 | ||
@@ -244,7 +244,7 @@ void Keyboard::drawKeyboard(QPainter &p, int row, int col) | |||
244 | else { | 244 | else { |
245 | // center the image in the middle of the key | 245 | // center the image in the middle of the key |
246 | pix->setColor(1, textcolor.rgb()); | 246 | pix->setColor(1, textcolor.rgb()); |
247 | p.drawImage( x + (keyWidthPix - pix->width())/2, | 247 | p.drawImage( x + (keyWidthPix - pix->width())/2 + 1, |
248 | y + (keyHeight - pix->height())/2 + 1, | 248 | y + (keyHeight - pix->height())/2 + 1, |
249 | QImage(*pix) ); | 249 | QImage(*pix) ); |
250 | } | 250 | } |