updates
This commit is contained in:
14
src/ui/dialogs/confirm_extend.py
Normal file
14
src/ui/dialogs/confirm_extend.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from .dialog_sources.Ui_confirm_extend import Ui_extend_confirm
|
||||
from PyQt6 import QtWidgets
|
||||
|
||||
class ConfirmExtend(QtWidgets.QDialog, Ui_extend_confirm):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
self.setupUi(self)
|
||||
|
||||
|
||||
def launch():
|
||||
app = QtWidgets.QApplication([])
|
||||
window = ConfirmExtend()
|
||||
window.show()
|
||||
app.exec()
|
||||
Reference in New Issue
Block a user