Bug 96768

Summary: quickbrowser "open in file manager" command opens a new konqueror window instead of a new tab
Product: [Plasma] kicker Reporter: Denis Prost <denis.prost>
Component: generalAssignee: Aaron J. Seigo <aseigo>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 3.3.1   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Denis Prost 2005-01-11 10:31:50 UTC
Version:           3.3.1 (using KDE 3.3.1,  (3.1))
Compiler:          gcc version 3.3.5 (Debian 1:3.3.5-3)
OS:                Linux (i686) release 2.4.26-1-386

When "open as tab in existing konqueror when URL is called externally" is checked in the "tabbed browsing / advanced options" konqueror settings dialog box, and I chose "open in file manager" in the quickbrowser menu, the chosen directory is not open in a new tab of the existing konqueror window but in a new window. Quickbrowser seems to be the only one that still open new konqueror windows, while Alt+F2, kicker bookmarks menu, or kicker file manager URL open tabs.
Comment 1 Aaron J. Seigo 2005-01-12 05:48:39 UTC
CVS commit by aseigo: 

don't assume (and manually start) konqueror
BUG:96768


  M +1 -3      browser_mnu.cpp   1.66


--- kdebase/kicker/ui/browser_mnu.cpp  #1.65:1.66
@@ -448,7 +448,5 @@ void PanelBrowserMenu::slotOpenTerminal(
 void PanelBrowserMenu::slotOpenFileManager()
 {
-    KProcess proc;
-    proc << "konqueror" << path();
-    proc.start(KProcess::DontCare);
+    new KRun(path());
 }
 


Comment 2 Denis Prost 2005-01-12 07:55:48 UTC
Thanks for such a quick fix !