1
0
Fork 0
mirror of synced 2024-06-29 03:31:06 +12:00

Change Window title of Console to Rare Console

This commit is contained in:
Dummerle 2022-01-08 16:48:30 +01:00
parent a197faef02
commit 9c29b8c46c
No known key found for this signature in database
GPG key ID: AB68CC59CA39F2F1

View file

@ -12,6 +12,7 @@ class ConsoleWindow(QWidget):
def __init__(self):
super(ConsoleWindow, self).__init__()
self.layout = QVBoxLayout()
self.setWindowTitle("Rare Console")
self.setGeometry(0, 0, 600, 400)
self.console = Console()