Skip to content

Commit

Permalink
Merge pull request #5850 from johnhaddon/colorChooserPlugValueWidgetFix
Browse files Browse the repository at this point in the history
ColorChooserPlugValueWidget : Fix `_updateFromEditable()`
  • Loading branch information
murraystevenson authored May 10, 2024
2 parents 25cf311 + aca395a commit 5e55644
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
1.3.16.x (relative to 1.3.16.2)
========

Fixes
-----

- ColorChooserPlugValueWidget : Fixed bug that allowed the editing of locked plugs and nodes.

1.3.16.2 (relative to 1.3.16.1)
========
Expand Down
2 changes: 1 addition & 1 deletion python/GafferUI/ColorChooserPlugValueWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def _updateFromValues( self, values, exception ) :
self.__colorChooser.setColor( color )
self.__colorChooser.setErrored( exception is not None )

def _updateFromEnabled( self ) :
def _updateFromEditable( self ) :

self.__colorChooser.setEnabled( self.__allComponentsEditable() )

Expand Down

0 comments on commit 5e55644

Please sign in to comment.