Commit 5b697bb4 authored by Roman Alifanov's avatar Roman Alifanov

init DualListWidget

parent 41297046
...@@ -8,6 +8,7 @@ from .FileChooser import FileChooser ...@@ -8,6 +8,7 @@ from .FileChooser import FileChooser
from .ButtonWidget import ButtonWidget from .ButtonWidget import ButtonWidget
from .InfoLabelWidget import InfoLabelWidget from .InfoLabelWidget import InfoLabelWidget
from .InfoDictWidget import InfoDictWidget from .InfoDictWidget import InfoDictWidget
from .DualListWidget import DualListWidget
import logging import logging
logger = logging.getLogger(f"{__name__}") logger = logging.getLogger(f"{__name__}")
...@@ -24,6 +25,7 @@ class WidgetFactory: ...@@ -24,6 +25,7 @@ class WidgetFactory:
'button': ButtonWidget, 'button': ButtonWidget,
'info_label': InfoLabelWidget, 'info_label': InfoLabelWidget,
'info_dict': InfoDictWidget, 'info_dict': InfoDictWidget,
'list_dual': DualListWidget,
} }
@staticmethod @staticmethod
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment