Skip to content

Doc typo #1267

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 24 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4d97b2c
Checkable pan/zoom buttons for QT NavigationToolbar
Aug 27, 2012
70358ac
Allow imsave() to handle RGB(A) input arrays
WeatherGod Sep 9, 2012
22c4a19
Added a test for imsave
WeatherGod Sep 9, 2012
069526a
Enable dynamic updating for the OS X backend
dmcdougall Sep 11, 2012
ef9471a
Upping version on master to 1.3.x
mdboom Sep 12, 2012
284fc0c
Merge branch 'v1.2.x'
mdboom Sep 12, 2012
54cfed6
Fix mri_demo.py fails with mpl 1.2.0rc1
cgohlke Sep 12, 2012
5ee5223
Fix 2to3 and packaging of dateutil
cgohlke Sep 12, 2012
3e65956
Merge pull request #1234 from cgohlke/patch-2
mdboom Sep 12, 2012
6b6e476
Merge pull request #1232 from dmcdougall/mac_dynamic
mdboom Sep 12, 2012
84dd08a
Fix poly_editor.py on Python 3
cgohlke Sep 12, 2012
3dfd380
Merge pull request #1236 from cgohlke/patch-3
mdboom Sep 12, 2012
d1ce640
Fix matplotlib.testing.util.MiniExpect.expect hangs on Windows
cgohlke Sep 12, 2012
6f95056
backend_pgf: fix parsing of CR+LF newlines
Sep 12, 2012
5d73cfb
Merge pull request #1240 from pwuertz/pgf-backend
Sep 12, 2012
d434480
Merge pull request #1239 from cgohlke/patch-7
mdboom Sep 13, 2012
d804231
Merge pull request #1233 from cgohlke/patch-1
mdboom Sep 13, 2012
5b2a72a
Merge pull request #1224 from WeatherGod/imshow_alpha
mdboom Sep 13, 2012
d2a1346
Merge remote-tracking branch 'upstream/v1.2.x'
mdboom Sep 13, 2012
5864941
Merge pull request #1152 from ChrisBeaumont/checkable_navbar
pelson Sep 13, 2012
3c73aac
Merge remote-tracking branch 'upstream/v1.2.x'
mdboom Sep 14, 2012
62069bd
Update six.py to version 1.2
cgohlke Sep 16, 2012
1e72892
Merge pull request #1261 from cgohlke/patch-8
mdboom Sep 17, 2012
3e0c006
Fix typo in docstring
dmcdougall Sep 17, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/matplotlib/backends/backend_macosx.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,9 @@ def prepare_configure_subplots(self):
def set_message(self, message):
_macosx.NavigationToolbar2.set_message(self, message.encode('utf-8'))

def dynamic_update(self):
self.canvas.draw_idle()

########################################################################
#
# Now just provide the standard names that backend.__init__ is expecting
Expand Down