- Revision
- 15323
- Author
- jeffrey
- Date
- 2007-09-12 10:50:09 -0700 (Wed, 12 Sep 2007)
Log Message
- Fix bug 10824, don't pre-populate reload dialog with a
non-existent file, r=Morgen
non-existent file, r=Morgen
Modified Paths
Diff
Modified: trunk/chandler/parcels/osaf/views/main/Main.py (15322 => 15323)
--- trunk/chandler/parcels/osaf/views/main/Main.py 2007-09-12 17:31:26 UTC (rev 15322) +++ trunk/chandler/parcels/osaf/views/main/Main.py 2007-09-12 17:50:09 UTC (rev 15323) @@ -1068,13 +1068,12 @@ parent=wx.GetApp().mainFrame) != wx.YES: return - filename = "%s.chex" % strftime("%Y%m%d%H%M%S") wildcard = "%s|*.chex|%s|*.dump|%s (*.*)|*.*" % (_(u"Export files"), _(u"Dump files"), _(u"All files")) dlg = wx.FileDialog(wx.GetApp().mainFrame, - _(u"Reload Items"), "", filename, wildcard, + _(u"Reload Items"), "", "", wildcard, wx.OPEN) path = None
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
