Skip to content

Commit 2a8a625

Browse files
committed
fixed _color to match _vector
1 parent 2f2bacf commit 2a8a625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NodeGraphQt/custom_widgets/properties_bin/custom_widget_color_picker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class PropColorPickerRGBA(BaseProperty):
7171

7272
def __init__(self, parent=None):
7373
super(PropColorPickerRGBA, self).__init__(parent)
74-
self._color = (0, 0, 0, 0)
74+
self._color = (0, 0, 0, 255)
7575
self._button = QtWidgets.QPushButton()
7676
self._vector = PropVector4()
7777
self._vector.set_value([0, 0, 0, 255])

0 commit comments

Comments
 (0)