Bodge hates camels

master
Milan Suman 2022-03-19 10:26:44 +05:30
parent 340a1ef389
commit 551f7db8f6
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
from PySide6 import QtCore, QtWidgets
class MainWindow(QtWidgets.QWidget):
class Window(QtWidgets.QWidget):
def __init__(self):
super().__init__()
self.text = QtWidgets.QLabel("Hello World", alignment=QtCore.Qt.AlignCenter)

View File

@ -26,7 +26,7 @@ configuration = Config(configuration_file_path, default_configuration)
################################################################################
app = QtWidgets.QApplication([])
main_window = gui_handler.MainWindow()
main_window = gui_handler.Window()
main_window.resize(800, 600)
main_window.show()