author | hash <hash> | 2002-08-19 18:03:39 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-19 18:03:39 (UTC) |
commit | 719dda9280813d323eebe3d2323271f953ed1144 (patch) (side-by-side diff) | |
tree | a36871f188640304551c5b70f09ad1755e5e0a7b /inputmethods/multikey/configdlg.cpp | |
parent | d68e038d1ba78a816e60990d5a36d6c52d8e11d3 (diff) | |
download | opie-719dda9280813d323eebe3d2323271f953ed1144.zip opie-719dda9280813d323eebe3d2323271f953ed1144.tar.gz opie-719dda9280813d323eebe3d2323271f953ed1144.tar.bz2 |
added sample key color changing
Diffstat (limited to 'inputmethods/multikey/configdlg.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | inputmethods/multikey/configdlg.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp index 1e104a6..59a290b 100644 --- a/inputmethods/multikey/configdlg.cpp +++ b/inputmethods/multikey/configdlg.cpp @@ -240,20 +240,21 @@ void ConfigDlg::removeMap() { // ConfigDlg::color {{{1 void ConfigDlg::keyColorButtonClicked() { Config config ("multikey"); config.setGroup ("colors"); QStringList color = config.readListEntry("keycolor", QChar(',')); QColor newcolor = OColorDialog::getColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt())); color[0].setNum(newcolor.red()); color[1].setNum(newcolor.green()); color[2].setNum(newcolor.blue()); config.writeEntry("keycolor", color, QChar(',')); + config.write(); key_color_button->setBackgroundColor(newcolor); emit reloadKeyboard(); } |