forked from AG_QGIS/Plugin_SN_Plan41
Fix: Bezeichnung des Datentabs (TabA) war TabA anstatt "Daten"
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"extraPaths": ["."]
|
||||
}
|
||||
@@ -4,7 +4,7 @@ sn_plan41/ui/tab_a_ui.py – UI für Tab A (Daten)
|
||||
|
||||
from typing import Optional
|
||||
|
||||
from sn_basis.functions.qt_wrapper import ( # type: ignore
|
||||
from sn_basis.functions.qt_wrapper import (
|
||||
QWidget,
|
||||
QVBoxLayout,
|
||||
QLabel,
|
||||
@@ -20,24 +20,24 @@ from sn_basis.functions.qt_wrapper import ( # type: ignore
|
||||
SizePolicyMaximum,
|
||||
|
||||
)
|
||||
from sn_basis.functions.qgisui_wrapper import ( # type: ignore
|
||||
from sn_basis.functions.qgisui_wrapper import (
|
||||
QgsFileWidget,
|
||||
QgsMapLayerComboBox,
|
||||
add_dock_widget,
|
||||
)
|
||||
from sn_basis.functions.qgiscore_wrapper import ( # type: ignore
|
||||
from sn_basis.functions.qgiscore_wrapper import (
|
||||
QgsProject,
|
||||
QgsMapLayerProxyModel,
|
||||
)
|
||||
from sn_basis.functions.message_wrapper import ( # type: ignore
|
||||
from sn_basis.functions.message_wrapper import (
|
||||
info,
|
||||
warning,
|
||||
error,
|
||||
)
|
||||
from sn_basis.functions.dialog_wrapper import ask_yes_no # type: ignore
|
||||
from sn_basis.functions.sys_wrapper import file_exists # type: ignore
|
||||
from sn_basis.functions.dialog_wrapper import ask_yes_no
|
||||
from sn_basis.functions.sys_wrapper import file_exists
|
||||
|
||||
from sn_plan41.ui.tab_a_logic import TabALogic # type: ignore
|
||||
from sn_plan41.ui.tab_a_logic import TabALogic
|
||||
|
||||
|
||||
class TabA(QWidget):
|
||||
@@ -45,7 +45,7 @@ class TabA(QWidget):
|
||||
UI-Klasse für Tab A (Daten).
|
||||
Enthält ausschließlich UI-Code und delegiert Logik an TabALogic.
|
||||
"""
|
||||
|
||||
tab_title = "Daten"
|
||||
|
||||
|
||||
def __init__(self, parent=None, build_ui: bool=True):
|
||||
|
||||
Reference in New Issue
Block a user