X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d69225772ad1ff3952a3ee74055dc93f85c13812..e015e7f3acef09b57bcd34e8f6780a19afdfd97b:/wxPython/wx/lib/pydocview.py?ds=sidebyside diff --git a/wxPython/wx/lib/pydocview.py b/wxPython/wx/lib/pydocview.py index 3292f8aa91..0314e5141b 100644 --- a/wxPython/wx/lib/pydocview.py +++ b/wxPython/wx/lib/pydocview.py @@ -295,7 +295,7 @@ class DocMDIParentFrameMixIn: config = wx.ConfigBase_Get() if config.ReadInt("MDIFrameMaximized", False): - # wxBug: On maximize, statusbar leaves a residual that needs to be refreshed, happens even when user does it + # wxBug: On maximize, statusbar leaves a residual that needs to be refereshed, happens even when user does it self.Maximize() self.CreateEmbeddedWindows(embeddedWindows) @@ -1603,7 +1603,7 @@ class DocApp(wx.PySimpleApp): args = pickle.loads(data) for arg in args: if arg[0] != '/' and arg[0] != '-' and os.path.exists(arg): - self.GetDocumentManager().CreateDocument(arg, wx.lib.docview.DOC_SILENT) + self.GetDocumentManager().CreateDocument(os.path.normpath(arg), wx.lib.docview.DOC_SILENT) # force display of running app topWindow = wx.GetApp().GetTopWindow() @@ -1624,7 +1624,7 @@ class DocApp(wx.PySimpleApp): args = sys.argv[1:] for arg in args: if arg[0] != '/' and arg[0] != '-' and os.path.exists(arg): - self.GetDocumentManager().CreateDocument(arg, wx.lib.docview.DOC_SILENT) + self.GetDocumentManager().CreateDocument(os.path.normpath(arg), wx.lib.docview.DOC_SILENT) def GetDocumentManager(self):