mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
TextWidget can have only string
This commit is contained in:
parent
805964c5e5
commit
b94ca1f2d2
1 changed files with 1 additions and 1 deletions
|
|
@ -983,7 +983,7 @@ class NumberWidget(QtWidgets.QWidget, InputObject):
|
|||
class TextWidget(QtWidgets.QWidget, InputObject):
|
||||
default_input_value = ""
|
||||
value_changed = QtCore.Signal(object)
|
||||
valid_value_types = (int, str)
|
||||
valid_value_types = (str, )
|
||||
|
||||
def __init__(
|
||||
self, input_data, parent,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue