From c01b816aaccfc9c822b35ad542f5fcb43b8c99b9 Mon Sep 17 00:00:00 2001 From: jchanvfx Date: Wed, 3 Feb 2021 17:24:25 +1300 Subject: [PATCH] doc updates --- NodeGraphQt/widgets/node_widgets.py | 3 --- docs/custom_widgets.rst | 4 ++-- docs/node_widgets.rst | 6 ++++-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/NodeGraphQt/widgets/node_widgets.py b/NodeGraphQt/widgets/node_widgets.py index 1f0c4dd0..48c90461 100644 --- a/NodeGraphQt/widgets/node_widgets.py +++ b/NodeGraphQt/widgets/node_widgets.py @@ -39,9 +39,6 @@ class NodeBaseWidget(QtWidgets.QGraphicsProxyWidget): This is the main wrapper class that allows a ``QtWidgets.QWidget`` to be added in a :class:`NodeGraphQt.BaseNode` object. - See :ref:`Embedding Custom Widgets` example to adding your own widget - into a node. - Args: parent (NodeGraphQt.BaseNode.view): parent node view. name (str): property name for the parent node. diff --git a/docs/custom_widgets.rst b/docs/custom_widgets.rst index cb0de962..33692f1e 100644 --- a/docs/custom_widgets.rst +++ b/docs/custom_widgets.rst @@ -1,5 +1,5 @@ -Custom Widgets -############## +Builtin Widgets +############### Here's a few custom widgets that included with the ``NodeGraphQt`` framework. diff --git a/docs/node_widgets.rst b/docs/node_widgets.rst index fc311405..9459cb7d 100644 --- a/docs/node_widgets.rst +++ b/docs/node_widgets.rst @@ -1,8 +1,10 @@ Node Widgets ############ -Here are widgets that can be added to a :class:`NodeGraphQt.BaseNode` and -displayed in the node graph. +Node widgets are widgets that can be embedded into a +:class:`NodeGraphQt.BaseNode` and displayed in the node graph. + +See :ref:`Embedding Custom Widgets` example to adding your own widget into a node. NodeBaseWidget **************