Bug 73695

Summary: Sending input to added session not working
Product: [Applications] konsole Reporter: Dik Takken <kde>
Component: generalAssignee: Konsole Developer <konsole-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.3   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Dik Takken 2004-01-28 18:15:32 UTC
Version:           1.3 (using KDE 3.2.0 RC1, compiled sources)
Compiler:          gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-98)
OS:          Linux (i686) release 2.6.1

When you have two open sessions tabs, have one session send the input to all other sessions and add a third session, the input will not be sent to the third session. You have to disable input duplication and re-enable it again.
Comment 1 Stephan Binner 2004-01-29 16:59:26 UTC
Subject: KDE_3_2_BRANCH: kdebase/konsole/konsole

CVS commit by binner: 

Fixed Bug 73695: Sending input to added session not working
CCMAIL: 73695-done@bugs.kde.org


  M +2 -4      konsole.cpp   1.441.2.2


--- kdebase/konsole/konsole/konsole.cpp  #1.441.2.1:1.441.2.2
@@ -2283,9 +2283,7 @@ void Konsole::addSession(TESession* s)
     setSchema(s->schemaNo());
     tabwidget->setCurrentPage(tabwidget->count()-1);
-    if (s->isMasterMode()) {
       disableMasterModeConnections(); // no duplicate connections, remove old
       enableMasterModeConnections();
     }
-  }
 }