From: Shane Pepperell Date: Sat, 14 Jan 2023 02:28:48 +0000 (+0000) Subject: moved mute button below volume slider. (makes more sense there) X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=5c6e6591df50a0ef71c89acfc393696a7b924c53;p=forks%2Fpeks-announcer.git moved mute button below volume slider. (makes more sense there) --- diff --git a/announcer.pyw b/announcer.pyw index 2aa0005..bb240e1 100644 --- a/announcer.pyw +++ b/announcer.pyw @@ -260,9 +260,9 @@ if __name__ == '__main__': volume_slider = Scale(gui, from_=0, to=100, orient=HORIZONTAL, command=update_volume) volume_slider.set(100) volume_slider.pack() - Button(gui, text='Test volume', command=play_random_sound).pack() mute_button = Button(gui, text='Mute', command=mute) mute_button.pack() + Button(gui, text='Test volume', command=play_random_sound).pack() announcer_thread = threading.Thread(target=announcer_loop) announcer_thread.start() mainloop()