Skip to content

Commit ae377a2

Browse files
committed
Merged revisions 7924 via svnmerge from
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_99_maint ........ r7924 | mdboom | 2009-11-03 11:27:13 -0500 (Tue, 03 Nov 2009) | 2 lines [2880836] Save from toolbar changes directory with WX backend ........ svn path=/trunk/matplotlib/; revision=7925
1 parent 74b6d50 commit ae377a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/backend_wx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1795,7 +1795,7 @@ def save(self, evt):
17951795
default_file = "image." + self.canvas.get_default_filetype()
17961796
dlg = wx.FileDialog(self._parent, "Save to file", "", default_file,
17971797
filetypes,
1798-
wx.SAVE|wx.OVERWRITE_PROMPT|wx.CHANGE_DIR)
1798+
wx.SAVE|wx.OVERWRITE_PROMPT)
17991799
dlg.SetFilterIndex(filter_index)
18001800
if dlg.ShowModal() == wx.ID_OK:
18011801
dirname = dlg.GetDirectory()

0 commit comments

Comments
 (0)