File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -706,6 +706,7 @@ def set_x(self, x):
706
706
ACCEPTS: float
707
707
"""
708
708
self ._x = x
709
+ self .stale = True
709
710
710
711
def set_y (self , y ):
711
712
"""
@@ -714,6 +715,7 @@ def set_y(self, y):
714
715
ACCEPTS: float
715
716
"""
716
717
self ._y = y
718
+ self .stale = True
717
719
718
720
def set_xy (self , xy ):
719
721
"""
@@ -722,6 +724,7 @@ def set_xy(self, xy):
722
724
ACCEPTS: 2-item sequence
723
725
"""
724
726
self ._x , self ._y = xy
727
+ self .stale = True
725
728
726
729
def set_width (self , w ):
727
730
"""
@@ -730,6 +733,7 @@ def set_width(self, w):
730
733
ACCEPTS: float
731
734
"""
732
735
self ._width = w
736
+ self .stale = True
733
737
734
738
def set_height (self , h ):
735
739
"""
@@ -738,6 +742,7 @@ def set_height(self, h):
738
742
ACCEPTS: float
739
743
"""
740
744
self ._height = h
745
+ self .stale = True
741
746
742
747
def set_bounds (self , * args ):
743
748
"""
@@ -753,6 +758,7 @@ def set_bounds(self, *args):
753
758
self ._y = b
754
759
self ._width = w
755
760
self ._height = h
761
+ self .stale = True
756
762
757
763
def get_bbox (self ):
758
764
return transforms .Bbox .from_bounds (self ._x , self ._y ,
You can’t perform that action at this time.
0 commit comments