Skip to content

Commit

Permalink
Remove welcome screen
Browse files Browse the repository at this point in the history
  • Loading branch information
selfkilla666 committed Dec 22, 2023
1 parent 0d1198a commit d7281ba
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions crasher/widgets/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from PySide6.QtGui import QAction

from crasher.utils.log_handler import StatusBarLogHandler
from crasher.widgets.welcome import QCrasherWelcomeWidget

import loguru

Expand Down Expand Up @@ -52,7 +51,7 @@ def initialize_ui(self) -> None:
# Initialize menu bar
self.menu_bar = QMenuBar(parent=self)

file_menu: QMenu = self.menu_bar.addMenu("File")
file_menu: QMenu = self.menu_bar.addMenu("&File")

new_project_action: QAction = QAction(text="New project", parent=self)
open_project_action: QAction = QAction(text="Open project", parent=self)
Expand All @@ -70,5 +69,3 @@ def initialize_ui(self) -> None:

self.setMenuBar(self.menu_bar)

self.welcome_widget = QCrasherWelcomeWidget(self)
self.setCentralWidget(self.welcome_widget)

0 comments on commit d7281ba

Please sign in to comment.