@@ -1259,11 +1259,10 @@ class Cursor(AxesWidget):
1259
1259
def __init__ (self , ax , horizOn = True , vertOn = True , useblit = False ,
1260
1260
** lineprops ):
1261
1261
"""
1262
- Add a cursor to *ax*. If ``useblit=True``, use the backend-
1263
- dependent blitting features for faster updates (GTKAgg
1264
- only for now). *lineprops* is a dictionary of line properties.
1262
+ Add a cursor to *ax*. If ``useblit=True``, use the backend-dependent
1263
+ blitting features for faster updates. *lineprops* is a dictionary of
1264
+ line properties.
1265
1265
"""
1266
- # TODO: Is the GTKAgg limitation still true?
1267
1266
AxesWidget .__init__ (self , ax )
1268
1267
1269
1268
self .connect_event ('motion_notify_event' , self .onmove )
@@ -1685,8 +1684,7 @@ class SpanSelector(_SelectorWidget):
1685
1684
Visually select a min/max range on a single axis and call a function with
1686
1685
those values.
1687
1686
1688
- To guarantee that the selector remains responsive, keep a reference to
1689
- it.
1687
+ To guarantee that the selector remains responsive, keep a reference to it.
1690
1688
1691
1689
In order to turn off the SpanSelector, set `span_selector.active=False`. To
1692
1690
turn it back on, set `span_selector.active=True`.
@@ -1705,7 +1703,7 @@ class SpanSelector(_SelectorWidget):
1705
1703
1706
1704
useblit : bool, default is False
1707
1705
If True, use the backend-dependent blitting features for faster
1708
- canvas updates. Only available for GTKAgg right now.
1706
+ canvas updates.
1709
1707
1710
1708
rectprops : dict, default is None
1711
1709
Dictionary of :class:`matplotlib.patches.Patch` properties
0 commit comments