8000 revert commits 5002, 5031 · matplotlib/matplotlib@e89e71d · GitHub
[go: up one dir, main page]

Skip to content

Commit e89e71d

Browse files
committed
revert commits 5002, 5031
svn path=/trunk/matplotlib/; revision=5037
1 parent 34513eb commit e89e71d

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2008-04-11 Revert commits 5002 and 5031, which were intended to
2+
avoid an unnecessary call to draw(). 5002 broke saving
3+
figures before show(). 5031 fixed the problem created in
4+
5002, but broke interactive plotting. Unnecessary call to
5+
draw still needs resolution - DSD
6+
17
2008-04-07 Improve color validation in rc handling, suggested
28
by Lev Givon - EF
39

lib/matplotlib/backends/backend_qt4agg.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ def draw( self ):
131131
if DEBUG: print "FigureCanvasQtAgg.draw", self
132132
self.replot = True
133133
FigureCanvasAgg.draw(self)
134+
self.update()
134135

135136
def blit(self, bbox=None):
136137
"""

lib/matplotlib/backends/backend_qtagg.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ def draw( self ):
136136
if DEBUG: print "FigureCanvasQtAgg.draw", self
137137
self.replot = True
138138
FigureCanvasAgg.draw(self)
139+
self.repaint(False)
139140

140141
def blit(self, bbox=None):
141142
"""

0 commit comments

Comments
 (0)
0