[Konsole-devel] [Bug 53963] Option to return copy behaviour to pre 1.2

Martin Walter mw25 at uni.de
Wed Feb 19 09:32:12 UTC 2003


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
     
http://bugs.kde.org/show_bug.cgi?id=53963     




------- Additional Comments From mw25 at uni.de  2003-02-19 10:32 -------
OK, here's a patch to get the old behavior back. It just enforces the old-style
auto-copy to clipboard. Of course it would be nicer to have an option for
turning this on and off somewhere in the preferences menu...

TEWidget.cpp, somewhere around line 1065, looks like this:

   1065       if ( actSel > 1 )
   1066           emit endSelectionSignal(preserve_line_breaks);

Change it into this:

   1065       if ( actSel > 1 )
   1066       { 
   1067           emit endSelectionSignal(preserve_line_breaks);
   1068           emit copySelectionSignal(); /* PATCH */
   1069       }

Recompile and enjoy!



More information about the konsole-devel mailing list