From: Shane Pepperell Date: Sat, 14 Jan 2023 02:37:05 +0000 (+0000) Subject: set starting volume to 50 instead of 100 X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=58d86091d31021c04e60a714b5aabe32e9596455;p=forks%2Fpeks-announcer.git set starting volume to 50 instead of 100 --- 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)