Skip to content

Commit c1ff057

Browse files
committed
selection fix
1 parent a842fc2 commit c1ff057

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NodeGraphQt/widgets/properties_bin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ def add_node(self, node):
122122
self._prop_list.setCellWidget(0, 0, prop_widget)
123123

124124
item = QtWidgets.QTableWidgetItem(node.id)
125-
# item.setForeground(QtGui.QBrush(QtGui.QColor(0, 0, 0, 0)))
126125
self._prop_list.setItem(0, 0, item)
126+
self._prop_list.selectRow(0)
127127

128128
def remove_node(self, node):
129129
"""

0 commit comments

Comments
 (0)