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 @@ -680,6 +680,7 @@ def set_x(self, x):
680
680
ACCEPTS: float
681
681
"""
682
682
self ._x = x
683
+ self .stale = True
683
684
684
685
def set_y (self , y ):
685
686
"""
@@ -688,6 +689,7 @@ def set_y(self, y):
688
689
ACCEPTS: float
689
690
"""
690
691
self ._y = y
692
+ self .stale = True
691
693
692
694
def set_xy (self , xy ):
693
695
"""
@@ -696,6 +698,7 @@ def set_xy(self, xy):
696
698
ACCEPTS: 2-item sequence
697
699
"""
698
700
self ._x , self ._y = xy
701
+ self .stale = True
699
702
700
703
def set_width (self , w ):
701
704
"""
@@ -704,6 +707,7 @@ def set_width(self, w):
704
707
ACCEPTS: float
705
708
"""
706
709
self ._width = w
710
+ self .stale = True
707
711
708
712
def set_height (self , h ):
709
713
"""
@@ -712,6 +716,7 @@ def set_height(self, h):
712
716
ACCEPTS: float
713
717
"""
714
718
self ._height = h
719
+ self .stale = True
715
720
716
721
def set_bounds (self , * args ):
717
722
"""
@@ -727,6 +732,7 @@ def set_bounds(self, *args):
727
732
self ._y = b
728
733
self ._width = w
729
734
self ._height = h
735
+ self .stale = True
730
736
731
737
def get_bbox (self ):
732
738
return transforms .Bbox .from_bounds (self ._x , self ._y ,
You can’t perform that action at this time.
0 commit comments