You are receiving this mail because:
You are the assignee for the bug, or are watching the assignee.
Additional Comments From kurt.hindenburg kdemail net 2005-09-03 21:07
SVN commit 456831 by hindenburg:
Temporary fix to handle crash when closing Konsole after detaching a session.
CCBUG: 106464
M +12 -1 konsole.cpp
#456830:456831
@ -2512,7 +2512,18 @
if (se != s)
se_previous = se;
se = s;
- session2action.find(se)->setChecked(true);
+
+// BR 106464 temporary fix
+// only 2 sessions opened, 2nd session viewable, right-click on 1st tab and
+// select 'Detach', close original Konsole window crash
+// s is not set properly on original Konsole window
+ KRadioAction *ra = session2action.find(se);
+ if (!ra) {
+ se=sessions.first(); // Get new/correct TESession
+ ra = session2action.find(se);
+ }
+ ra->setChecked(true);
+
QTimer::singleShot(1,this,SLT(allowPrevNext())); // hack, hack, hack
tabwidget->showPage( se->widget() );
konsole-devel mailing list
konsole-devel (AT) kde (DOT) org