We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95e1ca1 commit 684293dCopy full SHA for 684293d
NodeGraphQt/base/menu.py
@@ -10,7 +10,7 @@ class NodeGraphMenu(object):
10
"""
11
The ``NodeGraphMenu`` is the context menu triggered from the node graph.
12
13
- example to accessing the node graph context menu.
+ example for accessing the node graph context menu.
14
15
.. code-block:: python
16
:linenos:
@@ -21,6 +21,9 @@ class NodeGraphMenu(object):
21
22
# get the context menu for the node graph.
23
context_menu = node_graph.get_context_menu('graph')
24
+
25
+ print(context_menu)
26
+ # >> <NodeGraphMenu("NodeGraph") object at 0x10910fdd8>
27
28
29
def __init__(self, graph, qmenu):
0 commit comments