Bug 96768 - quickbrowser "open in file manager" command opens a new konqueror window instead of a new tab
Summary: quickbrowser "open in file manager" command opens a new konqueror window inst...
Status: RESOLVED FIXED
Alias: None
Product: kicker
Classification: Plasma
Component: general (show other bugs)
Version: 3.3.1
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Aaron J. Seigo
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-11 10:31 UTC by Denis Prost
Modified: 2005-01-12 07:55 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 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 !