From 4b46bca16df1e378114717473453f16ef0df01f1 Mon Sep 17 00:00:00 2001 From: Shane Pepperell Date: Sun, 15 Jan 2023 02:45:28 +0000 Subject: [PATCH] small fix to show init volume instead of nothing --- announcer/window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/announcer/window.py b/announcer/window.py index 1ebe1a5..d339b58 100644 --- a/announcer/window.py +++ b/announcer/window.py @@ -37,7 +37,7 @@ class MainWindow(QtWidgets.QMainWindow): self.mute_button = QtWidgets.QPushButton("Mute") self.test_volume_button = QtWidgets.QPushButton("Test sound") self.headerlabel = QtWidgets.QLabel("Hello World") - self.volume_level_label = QtWidgets.QLabel("Volume:") + self.volume_level_label = QtWidgets.QLabel("Volume: 50%") self.packlabel = QtWidgets.QLabel("Sound Pack:") self.sound_pack = QtWidgets.QComboBox() self.sound_pack.addItems(SOUND_PACKS) -- 2.30.2