Summary: | "Message handling" unset when setting it to "Open messages instantly" and reopening the configuration dialog | ||
---|---|---|---|
Product: | [Unmaintained] kopete | Reporter: | Andrija Prčić <andrija.prcic> |
Component: | general | Assignee: | Kopete Developers <kopete-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Andrija Prčić
2007-06-16 21:29:45 UTC
Seems that no one uses this option. That is, IMHo there is indeed a line of code missing in kopete/config/behavior/behaviorconfig.cpp: Index: kopete/config/behavior/behaviorconfig.cpp =================================================================== --- kopete/config/behavior/behaviorconfig.cpp (Revision 678055) +++ kopete/config/behavior/behaviorconfig.cpp (Arbeitskopie) @@ -229,6 +229,7 @@ // "General" TAB ============================================================ mPrfsGeneral->mShowTrayChk->setChecked( p->showTray() ); mPrfsGeneral->mStartDockedChk->setChecked( p->startDocked() ); + mPrfsGeneral->mInstantMessageOpeningChk->setChecked( !p->useQueue() && !p->useStack()); mPrfsGeneral->mUseQueueChk->setChecked( p->useQueue() ); mPrfsGeneral->mUseStackChk->setChecked( p->useStack() ); mPrfsGeneral->mQueueUnreadMessagesChk->setChecked ( p->queueUnreadMessages() ); please commit SVN commit 678555 by jritzerfeld: Check mInstantMessageOpeningChk radio button if neither mUseQueueChk nor mUseStackChk is checked. BUG: 146882 M +1 -0 behaviorconfig.cpp --- branches/KDE/3.5/kdenetwork/kopete/kopete/config/behavior/behaviorconfig.cpp #678554:678555 @@ -229,6 +229,7 @@ // "General" TAB ============================================================ mPrfsGeneral->mShowTrayChk->setChecked( p->showTray() ); mPrfsGeneral->mStartDockedChk->setChecked( p->startDocked() ); + mPrfsGeneral->mInstantMessageOpeningChk->setChecked( !p->useQueue() && !p->useStack()); mPrfsGeneral->mUseQueueChk->setChecked( p->useQueue() ); mPrfsGeneral->mUseStackChk->setChecked( p->useStack() ); mPrfsGeneral->mQueueUnreadMessagesChk->setChecked ( p->queueUnreadMessages() ); |