From 5ba5c52cad03c49771c08cb34859161e9c192a20 Mon Sep 17 00:00:00 2001 From: "Zane U. Ji" Date: Sat, 21 Dec 2013 08:00:31 +0800 Subject: [PATCH] Fixed browser launching when that type of files are supposed to be opened in XML Copy Editor --- src/xmlcopyeditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xmlcopyeditor.cpp b/src/xmlcopyeditor.cpp index 0c79cb9..ef62cf2 100644 --- a/src/xmlcopyeditor.cpp +++ b/src/xmlcopyeditor.cpp @@ -2429,7 +2429,7 @@ void MyFrame::OnBrowser ( wxCommandEvent& WXUNUSED ( event ) ) wtfn.setKeepFiles ( true ); } - wxLaunchDefaultBrowser ( sourceFileName ); + wxLaunchDefaultBrowser ( sourceFileName, wxBROWSER_NEW_WINDOW ); } void MyFrame::OnHelp ( wxCommandEvent& event )