File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change
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
+
1
7
2008-04-07 Improve color validation in rc handling, suggested
2
8
by Lev Givon - EF
3
9
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ def draw( self ):
131
131
if DEBUG : print "FigureCanvasQtAgg.draw" , self
132
132
self .replot = True
133
133
FigureCanvasAgg .draw (self )
134
+ self .update ()
134
135
135
136
def blit (self , bbox = None ):
136
137
"""
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ def draw( self ):
136
136
if DEBUG : print "FigureCanvasQtAgg.draw" , self
137
137
self .replot = True
138
138
FigureCanvasAgg .draw (self )
139
+ self .repaint (False )
139
140
140
141
def blit (self , bbox = None ):
141
142
"""
You can’t perform that action at this time.
0 commit comments