summaryrefslogtreecommitdiff
authorhash <hash>2002-08-23 18:28:03 (UTC)
committer hash <hash>2002-08-23 18:28:03 (UTC)
commit4e1a0d708c7ff0b7b1c3ad15bcae933b76e1ae5e (patch) (unidiff)
tree95731dcac369953c863e93ba0df3c2e90abff7d3
parent3e37e49a35b786e5da747d4e19e898fb7135533c (diff)
downloadopie-4e1a0d708c7ff0b7b1c3ad15bcae933b76e1ae5e.zip
opie-4e1a0d708c7ff0b7b1c3ad15bcae933b76e1ae5e.tar.gz
opie-4e1a0d708c7ff0b7b1c3ad15bcae933b76e1ae5e.tar.bz2
oops, fixed bug in color buttons
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/multikey/configdlg.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp
index 9576579..10bc611 100644
--- a/inputmethods/multikey/configdlg.cpp
+++ b/inputmethods/multikey/configdlg.cpp
@@ -306,5 +306,5 @@ void ConfigDlg::keyColorClicked() {
306 config.write(); 306 config.write();
307 307
308 keycolor_button->setBackgroundColor(newcolor); 308 keycolor_button->setPalette(QPalette(newcolor));
309 emit reloadKeyboard(); 309 emit reloadKeyboard();
310} 310}
@@ -325,5 +325,5 @@ void ConfigDlg::keyColorPressedClicked() {
325 config.write(); 325 config.write();
326 326
327 keycolor_pressed_button->setBackgroundColor(newcolor); 327 keycolor_pressed_button->setPalette(QPalette(newcolor));
328 emit reloadKeyboard(); 328 emit reloadKeyboard();
329} 329}
@@ -344,5 +344,5 @@ void ConfigDlg::keyColorLinesClicked() {
344 config.write(); 344 config.write();
345 345
346 keycolor_lines_button->setBackgroundColor(newcolor); 346 keycolor_lines_button->setPalette(QPalette(newcolor));
347 emit reloadKeyboard(); 347 emit reloadKeyboard();
348} 348}
@@ -363,5 +363,5 @@ void ConfigDlg::textColorClicked() {
363 config.write(); 363 config.write();
364 364
365 textcolor_button->setBackgroundColor(newcolor); 365 textcolor_button->setPalette(QPalette(newcolor));
366 emit reloadKeyboard(); 366 emit reloadKeyboard();
367} 367}