mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
changed font color of not enabled inputs so its readable
This commit is contained in:
parent
58d941d76d
commit
f472285f65
1 changed files with 2 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ class FamilyWidget(QtWidgets.QWidget):
|
|||
input_asset.setStyleSheet("color: #BBBBBB;")
|
||||
input_subset = QtWidgets.QLineEdit()
|
||||
input_result = QtWidgets.QLineEdit()
|
||||
input_result.setStyleSheet("color: gray;")
|
||||
input_result.setStyleSheet("color: #BBBBBB;")
|
||||
input_result.setEnabled(False)
|
||||
|
||||
# region Menu for default subset names
|
||||
|
|
@ -56,6 +56,7 @@ class FamilyWidget(QtWidgets.QWidget):
|
|||
version_spinbox.setMinimum(1)
|
||||
version_spinbox.setMaximum(9999)
|
||||
version_spinbox.setEnabled(False)
|
||||
version_spinbox.setStyleSheet("color: #BBBBBB;")
|
||||
|
||||
version_checkbox = QtWidgets.QCheckBox("Next Available Version")
|
||||
version_checkbox.setCheckState(QtCore.Qt.CheckState(2))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue