aboutsummaryrefslogtreecommitdiffstats
path: root/SoundboardEngine.py
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2026-07-24 20:53:28 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2026-07-24 20:53:28 +0530
commit79261efa3895867f1d962da58373bb338c534d11 (patch)
treeb8c42b4aeacd75cd43508efa378c9eac36d62e15 /SoundboardEngine.py
parent98f380c9b031305836ad6e7cfcd020bba2cd97fb (diff)
added soundboard updater
Diffstat (limited to 'SoundboardEngine.py')
-rw-r--r--SoundboardEngine.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/SoundboardEngine.py b/SoundboardEngine.py
index 899f9d2..a9c3241 100644
--- a/SoundboardEngine.py
+++ b/SoundboardEngine.py
@@ -16,7 +16,6 @@
import random
-from AboutWindow import AboutWindow
from PySide6.QtWidgets import (
QMainWindow,
QStackedWidget,
@@ -24,16 +23,18 @@ from PySide6.QtWidgets import (
QWidget,
)
+from AboutWindow import AboutWindow
from AudioPlayer import AudioPlayer, PlayerStatus
from CategoryCardWidget import CategoryCardWidget
from CategoryListWidget import CategoryListWidget
-from SoundListItemWidget import QHBoxLayout, QLabel
from Soundboard import Soundboard
+from SoundListItemWidget import QHBoxLayout, QLabel
from SoundsListWidget import SoundsListWidget
from StatusbarWidget import StatusbarWidget
APP_VERSION = "0.1.0"
+
class SoundboardEngineWindow(QMainWindow):
def __init__(self, soundboard: Soundboard, app_version):
super().__init__()
@@ -83,7 +84,9 @@ class SoundboardEngineWindow(QMainWindow):
self.footer_layout.setContentsMargins(0, 0, 0, 10)
self.footer_layout.addStretch()
- self.footer_label = QLabel(f"Soundboard Engine {self.app_version} | <a href='about'>About</a>")
+ self.footer_label = QLabel(
+ f"Soundboard Engine {self.app_version} | <a href='about'>About</a>"
+ )
self.footer_label.linkActivated.connect(self.toggle_about_page)
self.footer_layout.addWidget(self.footer_label)