@@ -405,7 +405,7 @@ def trigger(self, sender, event, data=None):
405
405
class ToolEnableAllNavigation (ToolBase ):
406
406
"""Tool to enable all axes for toolmanager interaction"""
407
407
408
- description = 'Enables all axes toolmanager'
408
+ description = 'Enable all axes toolmanager'
409
409
default_keymap = rcParams ['keymap.all_axes' ]
410
410
411
411
def trigger (self , sender , event , data = None ):
@@ -421,7 +421,7 @@ def trigger(self, sender, event, data=None):
421
421
class ToolEnableNavigation (ToolBase ):
422
422
"""Tool to enable a specific axes for toolmanager interaction"""
423
423
424
- description = 'Enables one axes toolmanager'
424
+ description = 'Enable one axes toolmanager'
425
425
default_keymap = (1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 )
426
426
427
427
def trigger (self , sender , event , data = None ):
@@ -472,7 +472,7 @@ def _get_uniform_grid_state(ticks):
472
472
class ToolGrid (_ToolGridBase ):
473
473
"""Tool to toggle the major grids of the figure"""
474
474
475
- description = 'Toogle major grids'
475
+ description = 'Toggle major grids'
476
476
default_keymap = rcParams ['keymap.grid' ]
477
477
478
478
def _get_next_grid_states (self , ax ):
@@ -493,7 +493,7 @@ def _get_next_grid_states(self, ax):
493
493
class ToolMinorGrid (_ToolGridBase ):
494
494
"""Tool to toggle the major and minor grids of the figure"""
495
495
496
- description = 'Toogle major and minor grids'
496
+ description = 'Toggle major and minor grids'
497
497
default_keymap = rcParams ['keymap.grid_minor' ]
498
498
499
499
def _get_next_grid_states (self , ax ):
@@ -513,7 +513,7 @@ def _get_next_grid_states(self, ax):
513
513
class ToolFullScreen (ToolToggleBase ):
514
514
"""Tool to toggle full screen"""
515
515
516
- description = 'Toogle Fullscreen mode'
516
+ description = 'Toggle fullscreen mode'
517
517
default_keymap = rcParams ['keymap.fullscreen' ]
518
518
519
519
def enable (self , event ):
@@ -543,7 +543,7 @@ def disable(self, event):
543
543
class ToolYScale (AxisScaleBase ):
544
544
"""Tool to toggle between linear and logarithmic scales on the Y axis"""
545
545
546
- description = 'Toogle Scale Y axis'
546
+ description = 'Toggle scale Y axis'
547
547
default_keymap = rcParams ['keymap.yscale' ]
548
548
549
549
def set_scale (self , ax , scale ):
@@ -553,7 +553,7 @@ def set_scale(self, ax, scale):
553
553
class ToolXScale (AxisScaleBase ):
554
554
"""Tool to toggle between linear and logarithmic scales on the X axis"""
555
555
556
- description = 'Toogle Scale X axis'
556
+ description = 'Toggle scale X axis'
557
557
default_keymap = rcParams ['keymap.xscale' ]
558
558
559
559
def set_scale (self , ax , scale ):
0 commit comments