Aufgeräumt.

This commit is contained in:
Michael Otto
2025-11-17 11:29:50 +01:00
parent 9d6493aaee
commit a5ad498e8a
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()