forked from Wobbl/Wobuzz
Added icon and desktop entry.
This commit is contained in:
parent
ed92c46f95
commit
060132be36
4 changed files with 115 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from PyQt6.QtCore import Qt
|
||||
from PyQt6.QtGui import QIcon
|
||||
from PyQt6.QtWidgets import QMainWindow, QMenu
|
||||
from .track_control import TrackControl
|
||||
from .settings import Settings
|
||||
|
@ -12,7 +13,10 @@ class MainWindow(QMainWindow):
|
|||
|
||||
self.app = app
|
||||
|
||||
self.icon = QIcon(f"{self.app.utils.wobuzz_location}/icon.svg")
|
||||
|
||||
self.setWindowTitle("Wobuzz")
|
||||
self.setWindowIcon(self.icon)
|
||||
|
||||
self.menu_bar = self.menuBar()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue