mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-07-01 20:36:26 +00:00
wip: b30 table viewer
This commit is contained in:
@ -2,6 +2,7 @@ from PySide6.QtCore import QCoreApplication
|
||||
from PySide6.QtWidgets import QWidget
|
||||
|
||||
from ui.designer.tabs.tabDbEntry_ui import Ui_TabDbEntry
|
||||
from ui.implements.tabs.tabDb.tabDb_B30TableViewer import DbB30TableViewer
|
||||
from ui.implements.tabs.tabDb.tabDb_ScoreTableViewer import DbScoreTableViewer
|
||||
|
||||
|
||||
@ -14,3 +15,7 @@ class TabDbEntry(Ui_TabDbEntry, QWidget):
|
||||
DbScoreTableViewer(self),
|
||||
QCoreApplication.translate("TabDbEntry", "tab.scoreTableViewer"),
|
||||
)
|
||||
self.tabWidget.addTab(
|
||||
DbB30TableViewer(self),
|
||||
QCoreApplication.translate("TabDbEntry", "tab.b30TableViewer"),
|
||||
)
|
||||
|
Reference in New Issue
Block a user