From 58d86091d31021c04e60a714b5aabe32e9596455 Mon Sep 17 00:00:00 2001 From: Shane Pepperell Date: Sat, 14 Jan 2023 02:37:05 +0000 Subject: [PATCH] set starting volume to 50 instead of 100 --- announcer.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/announcer.pyw b/announcer.pyw index a11f143..753fc0d 100644 --- a/announcer.pyw +++ b/announcer.pyw @@ -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) -- 2.30.2