Bug 73695 - Sending input to added session not working
Summary: Sending input to added session not working
Status: RESOLVED FIXED
Alias: None
Product: konsole
Classification: Applications
Component: general (show other bugs)
Version: 1.3
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Konsole Developer
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-01-28 18:15 UTC by Dik Takken
Modified: 2004-01-29 16:59 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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();
     }
-  }
 }