author | llornkcor <llornkcor> | 2002-11-01 01:20:04 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-01 01:20:04 (UTC) |
commit | 8f506dbc2b70df5ea0dd6c61014d20b433b1372f (patch) (side-by-side diff) | |
tree | f70b808e9cd74119ca7957faf1b8451f4bc88aaf | |
parent | 4d2569e18b7f3e27c5d603c080ee3aee5a001231 (diff) | |
download | opie-8f506dbc2b70df5ea0dd6c61014d20b433b1372f.zip opie-8f506dbc2b70df5ea0dd6c61014d20b433b1372f.tar.gz opie-8f506dbc2b70df5ea0dd6c61014d20b433b1372f.tar.bz2 |
fix ischecked wrap menu
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index 06bee33..5a68c81 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp @@ -1002,31 +1002,31 @@ void Konsole::changeBackgroundColor(const QColor &color) { Config cfg("Konsole"); cfg.setGroup("Colors"); int r, g, b; color.rgb(&r,&g,&b); background.setRgb(r,g,b); // QString colors; // colors.sprintf("%d,%d,%d"color.red,color.green,color.blue); cfg.writeEntry("background",color.name()); cfg.write(); } void Konsole::doWrap() { int i; #ifdef QWS_QT_OPIE i=-29; #else i=-28; #endif Config cfg("Konsole"); cfg.setGroup("ScrollBar"); TEWidget* te = getTe(); if( !cfg.readBoolEntry("HorzScroll",0)) { te->setWrapAt(0); - configMenu->setItemChecked( i,FALSE); + configMenu->setItemChecked( i,TRUE); } else { te->setWrapAt(90); // te->setWrapAt(120); - configMenu->setItemChecked( i,TRUE); + configMenu->setItemChecked( i,FALSE); } } |