projects
/
forks
/
peks-announcer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1233f68
)
fixed a bug where unmuting without changing volume would set it to 100% instead of 50%
author
Shane Pepperell
<shane.pepperell@me.com>
Sun, 15 Jan 2023 03:31:47 +0000
(
03:31
+0000)
committer
Shane Pepperell
<shane.pepperell@me.com>
Sun, 15 Jan 2023 03:31:47 +0000
(
03:31
+0000)
announcer/window.py
patch
|
blob
|
history
diff --git
a/announcer/window.py
b/announcer/window.py
index 8e45f8ca8caa312e8ab1559d5a4e6a519a250036..03e8d953969cd14b13ae598dbbef841d64fef6da 100644
(file)
--- a/
announcer/window.py
+++ b/
announcer/window.py
@@
-55,6
+55,7
@@
class MainWindow(QtWidgets.QMainWindow):
self.layout.addWidget(self.sound_pack, 2, 1, 1, 2)
self.media_player = QMediaPlayer()
+ self.media_player.setVolume(50)
self.event_player = EventPlayer()
self.event_player_thread = QThread()