Skip to content

Commit

Permalink
fix: frame override does not enable frame list in Maya 2025
Browse files Browse the repository at this point in the history
Signed-off-by: Morgan Epp <[email protected]>
  • Loading branch information
epmog committed Oct 28, 2024
1 parent a4fc035 commit 9cd50bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,4 @@ def activate_frame_override_changed(self, state):
"""
Set the activated/deactivated status of the Frame override text box
"""
self.frame_override_txt.setEnabled(state == Qt.Checked)
self.frame_override_txt.setEnabled(Qt.CheckState(state) == Qt.Checked)

0 comments on commit 9cd50bf

Please sign in to comment.