diff options
Diffstat (limited to 'src/ui_widgets.py')
-rw-r--r-- | src/ui_widgets.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui_widgets.py b/src/ui_widgets.py index 9eabd2e..3babfa6 100644 --- a/src/ui_widgets.py +++ b/src/ui_widgets.py @@ -21,6 +21,11 @@ class MeinGroßLabel(QLabel): self.setFont(GUI.bigfont) self.setAlignment(Qt.AlignHCenter) +class LayoutWrapper(QWidget): + def __init__(self, layout): + super().__init__() + self.setLayout(layout) + class EllipseWidget(QWidget): def __init__(self, pol): QWidget.__init__(self) |