mirror of
https://github.com/NinjaCheetah/NUSGet.git
synced 2026-02-27 23:25:29 -05:00
Added About NUSGet and About Qt dialogs
This commit is contained in:
13
qt/py/ui_AboutDialog.py
Normal file
13
qt/py/ui_AboutDialog.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# "qt/py/ui_AboutDialog.py", licensed under the MIT license
|
||||
# Copyright 2024-2025 NinjaCheetah and Contributors
|
||||
|
||||
from PySide6.QtWidgets import QDialog
|
||||
from qt.py.ui_AboutNUSGet import Ui_AboutNUSGet
|
||||
|
||||
class AboutNUSGet(QDialog):
|
||||
def __init__(self, version_str):
|
||||
super().__init__()
|
||||
self.ui = Ui_AboutNUSGet()
|
||||
self.ui.setupUi(self)
|
||||
|
||||
self.ui.version_lbl.setText(version_str)
|
||||
Reference in New Issue
Block a user