From: <ck...@us...> - 2008-08-21 21:32:05
|
Revision: 6068 http://krusader.svn.sourceforge.net/krusader/?rev=6068&view=rev Author: ckarai Date: 2008-08-21 21:32:15 +0000 (Thu, 21 Aug 2008) Log Message: ----------- FIXED: [ 2062651 ] Ctrl+Up selects the URL in the origin editbox Modified Paths: -------------- trunk/krusader_kde4/ChangeLog trunk/krusader_kde4/krusader/Panel/listpanel.cpp Modified: trunk/krusader_kde4/ChangeLog =================================================================== --- trunk/krusader_kde4/ChangeLog 2008-08-20 21:33:13 UTC (rev 6067) +++ trunk/krusader_kde4/ChangeLog 2008-08-21 21:32:15 UTC (rev 6068) @@ -7,6 +7,7 @@ ARCH: QuickSearch is moved to KrView from Detailed/Brief views ARCH: Keyboard handling is moved to KrView from Detailed/Brief views + FIXED: [ 2062651 ] Ctrl+Up selects the URL in the origin editbox FIXED: [ 1988893 ] konsole is started in a wrong directory please set "konsole --workdir %d" for the terminal (Konfigurator) as Krusader won't fix your config automatically Modified: trunk/krusader_kde4/krusader/Panel/listpanel.cpp =================================================================== --- trunk/krusader_kde4/krusader/Panel/listpanel.cpp 2008-08-20 21:33:13 UTC (rev 6067) +++ trunk/krusader_kde4/krusader/Panel/listpanel.cpp 2008-08-21 21:32:15 UTC (rev 6068) @@ -941,6 +941,7 @@ case Qt::Key_Up : if ( e->modifiers() == Qt::ControlModifier ) { // give the keyboard focus to the command line origin->lineEdit()->setFocus(); + origin->lineEdit()->selectAll(); return ; } else e->ignore(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |