@@ -1251,11 +1251,10 @@ class Cursor(AxesWidget):
1251
1251
def __init__ (self , ax , horizOn = True , vertOn = True , useblit = False ,
1252
1252
** lineprops ):
1253
1253
"""
1254
- Add a cursor to *ax*. If ``useblit=True``, use the backend-
1255
- dependent blitting features for faster updates (GTKAgg
1256
- only for now). *lineprops* is a dictionary of line properties.
1254
+ Add a cursor to *ax*. If ``useblit=True``, use the backend-dependent
1255
+ blitting features for faster updates. *lineprops* is a dictionary of
1256
+ line properties.
1257
1257
"""
1258
- # TODO: Is the GTKAgg limitation still true?
1259
1258
AxesWidget .__init__ (self , ax )
1260
1259
1261
1260
self .connect_event ('motion_notify_event' , self .onmove )
@@ -1677,8 +1676,7 @@ class SpanSelector(_SelectorWidget):
1677
1676
Visually select a min/max range on a single axis and call a function with
1678
1677
those values.
1679
1678
1680
- To guarantee that the selector remains responsive, keep a reference to
1681
- it.
1679
+ To guarantee that the selector remains responsive, keep a reference to it.
1682
1680
1683
1681
In order to turn off the SpanSelector, set `span_selector.active=False`. To
1684
1682
turn it back on, set `span_selector.active=True`.
@@ -1697,7 +1695,7 @@ class SpanSelector(_SelectorWidget):
1697
1695
1698
1696
useblit : bool, default is False
1699
1697
If True, use the backend-dependent blitting features for faster
1700
- canvas updates. Only available for GTKAgg right now.
1698
+ canvas updates.
1701
1699
1702
1700
rectprops : dict, default is None
1703
1701
Dictionary of :class:`matplotlib.patches.Patch` properties
0 commit comments