X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d1dc2b32e00303839aec0077aefcbc60bd712f00..c545950d8cfe2d17f64dbf6c5aafb94fade9cb5d:/wxPython/wx/lib/docview.py diff --git a/wxPython/wx/lib/docview.py b/wxPython/wx/lib/docview.py index 8f5f038ba7..aad8359e14 100644 --- a/wxPython/wx/lib/docview.py +++ b/wxPython/wx/lib/docview.py @@ -1318,7 +1318,7 @@ class DocManager(wx.EvtHandler): """ Creates a new document and reads in the selected file. """ - if not self.CreateDocument('', 0): + if not self.CreateDocument('', DEFAULT_DOCMAN_FLAGS): self.OnOpenFileFailure() @@ -1709,6 +1709,11 @@ class DocManager(wx.EvtHandler): else: return None + if path and flags & DOC_SILENT: + temp = self.FindTemplateForPath(path) + else: + temp, path = self.SelectDocumentPath(templates, path, flags) + # Existing document if self.GetFlags() & DOC_OPEN_ONCE: for document in self._docs: @@ -1720,11 +1725,6 @@ class DocManager(wx.EvtHandler): firstView.GetFrame().Iconize(False) return None - if flags & DOC_SILENT: - temp = self.FindTemplateForPath(path) - else: - temp, path = self.SelectDocumentPath(templates, path, flags) - if temp: newDoc = temp.CreateDocument(path, flags) if newDoc: