Aufgeräumt.

This commit is contained in:
Michael Otto
2025-11-17 11:29:25 +01:00
parent d702b251d7
commit 8a5adb05f3
4 changed files with 21 additions and 31 deletions

View File

@@ -1,6 +1,8 @@
from qgis.PyQt.QtWidgets import QWidget, QVBoxLayout, QLabel, QLineEdit
class TabA(QWidget):
tab_title = "Tab A"
def __init__(self, parent=None):
super().__init__(parent)
layout = QVBoxLayout()

View File

@@ -1,6 +1,8 @@
from qgis.PyQt.QtWidgets import QWidget, QVBoxLayout, QLabel, QTextEdit
class TabB(QWidget):
tab_title = "Tab B"
def __init__(self, parent=None):
super().__init__(parent)
layout = QVBoxLayout()