kivy-garden / garden.matplotlib

Matplotlib backends using kivy
MIT License
103 stars 50 forks source link

pan does not draw during panning #55

Open lkjell opened 7 years ago

lkjell commented 7 years ago

The NavigationToolbar2Kivy class miss a dynamic_update() function which draw the plot during panning. dynamic_update() usually just call self.canvas.draw_idle() But draw_idle() is not yet implemented. Is there a way to implement draw_idle() with kivy event based driven approach? Using draw() in dynamic_update() is very slow.

lkjell commented 7 years ago

Fixed in pull request #56. Just waiting to be pulled in.

bluenote10 commented 4 years ago

What happened to #56?