Skip to content

Commit 12782e7

Browse files
committed
bug fixes #418.
1 parent 53f2bfe commit 12782e7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

NodeGraphQt/custom_widgets/nodes_tree.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ def _build_tree(self):
7878
Populate the node tree.
7979
"""
8080
self.clear()
81-
palette = QtGui.QPalette()
8281
categories = set()
8382
node_types = {}
8483
for name, node_ids in self._factory.names.items():

NodeGraphQt/widgets/viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class NodeViewer(QtWidgets.QGraphicsView):
5050
node_selected = QtCore.Signal(str)
5151
node_selection_changed = QtCore.Signal(list, list)
5252
node_double_clicked = QtCore.Signal(str)
53-
data_dropped = QtCore.Signal(QtCore.QMimeData, QtCore.QPoint)
53+
data_dropped = QtCore.Signal(object)
5454
context_menu_prompt = QtCore.Signal(str, object)
5555

5656
def __init__(self, parent=None, undo_stack=None):

0 commit comments

Comments
 (0)