From 069526aa84dffad69b28565598aa857676f83f12 Mon Sep 17 00:00:00 2001 From: Damon McDougall Date: Tue, 11 Sep 2012 13:01:29 +0100 Subject: [PATCH] Enable dynamic updating for the OS X backend --- lib/matplotlib/backends/backend_macosx.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/matplotlib/backends/backend_macosx.py b/lib/matplotlib/backends/backend_macosx.py index 88651a94bcaf..a6df42c262f3 100644 --- a/lib/matplotlib/backends/backend_macosx.py +++ b/lib/matplotlib/backends/backend_macosx.py @@ -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