Path: set property

This commit is contained in:
David Holdeman
2023-03-17 20:25:15 -05:00
parent 6dc12e0c19
commit 91738ab68b

View File

@@ -89,10 +89,10 @@ def updateInputField(obj, prop, widget, onBeforeChange=None):
break
if exprSet:
widget.setReadOnly(True)
widget.setStyleSheet("color: gray")
widget.setProperty("exprSet", "true")
else:
widget.setReadOnly(False)
widget.setStyleSheet("color: black")
widget.setProperty("exprSet", "false")
widget.update()
if isDiff: