From ba3619c98679304cf556bc4bbf7decffdd3d5270 Mon Sep 17 00:00:00 2001 From: John Wiggins Date: Mon, 8 Mar 2021 16:40:32 +0100 Subject: [PATCH] Add ContextMenuTool to enable.tools.pyface.api --- enable/tools/pyface/api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/enable/tools/pyface/api.py b/enable/tools/pyface/api.py index a480541b6..acfe566b5 100644 --- a/enable/tools/pyface/api.py +++ b/enable/tools/pyface/api.py @@ -10,6 +10,7 @@ """ API for enable.tools.pyface subpackage. - :class:`~.ComponentCommand` +- :class:`~.ContextMenuTool` - :class:`~.MoveCommand` - :class:`~.ResizeCommand` - :class:`~.BaseCommandTool` @@ -21,6 +22,7 @@ # Support for Undo/Redo with Enable from .commands import ComponentCommand, MoveCommand, ResizeCommand from .command_tool import BaseCommandTool, BaseUndoTool +from .context_menu_tool import ContextMenuTool from .move_command_tool import MoveCommandTool from .resize_command_tool import ResizeCommandTool from .undo_tool import UndoTool