| commit | cfb6d2aceffe2a3b49042174adb88564905681ae | [log] [tgz] |
|---|---|---|
| author | Philipp Le <philipp@philipple.de> | Tue Apr 26 22:08:48 2022 +0200 |
| committer | Philipp Le <philipp@philipple.de> | Mon May 23 22:10:10 2022 +0200 |
| tree | d7a58c0918232c085229ca8cf4771fdae756de75 | |
| parent | cefab9279758a6fc8be8d718f486e64d234b0105 [diff] [blame] |
feat: Control widget for string fields Change-Id: Ibfe5f3cfe3a90dc8c727d9a2fd6ac18266fe6171
diff --git a/dcs/config/ui/ui_create.py b/dcs/config/ui/ui_create.py index 16d4ede..1499b61 100644 --- a/dcs/config/ui/ui_create.py +++ b/dcs/config/ui/ui_create.py
@@ -11,10 +11,12 @@ from .base import ConfigWidget from .num_widget import NumWidget +from .str_widget import StrWidget _CLASS_REGISTRY: List[Type[ConfigWidget]] = [ NumWidget, + StrWidget, ]