mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix number def creation
This commit is contained in:
parent
2fd95e314b
commit
9787f4ad88
1 changed files with 3 additions and 3 deletions
|
|
@ -763,9 +763,9 @@ class ActionsWidget(QtWidgets.QWidget):
|
|||
default=value,
|
||||
label=config_field.get("label"),
|
||||
decimals=0 if field_type == "integer" else 5,
|
||||
placeholder=config_field.get("placeholder"),
|
||||
min_value=config_field.get("min"),
|
||||
max_value=config_field.get("max"),
|
||||
# placeholder=config_field.get("placeholder"),
|
||||
minimum=config_field.get("min"),
|
||||
maximum=config_field.get("max"),
|
||||
)
|
||||
elif field_type in ("select", "multiselect"):
|
||||
attr_def = EnumDef(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue