set starting volume to 50 instead of 100
authorShane Pepperell <shane.pepperell@me.com>
Sat, 14 Jan 2023 02:37:05 +0000 (02:37 +0000)
committerShane Pepperell <shane.pepperell@me.com>
Sat, 14 Jan 2023 02:37:05 +0000 (02:37 +0000)
announcer.pyw

index a11f1436e2702b7c61dac1adcd152b235432719d..753fc0d0a4f9b0b1aacacb56cfd4b7ca348de75e 100644 (file)
@@ -258,7 +258,7 @@ if __name__ == '__main__':
     gui.title("LoL Announcer")
     gui.protocol("WM_DELETE_WINDOW", close_script)
     volume_slider = Scale(gui, from_=0, to=100, orient=HORIZONTAL, command=update_volume)
-    volume_slider.set(100)
+    volume_slider.set(50)
     volume_slider.grid(row=0, column=0)
     mute_button = Button(gui, text='Mute', command=mute)
     mute_button.grid(row=0, column=1)