Timer display

Makes these two files support that setting. Also fixes a bug in the command line display for the timer settings.
This commit is contained in:
AmazingAmpharos
2017-11-11 18:08:41 -06:00
committed by GitHub
parent ff3420cab7
commit 13197e4ffe
2 changed files with 4 additions and 2 deletions

2
Gui.py
View File

@@ -113,7 +113,7 @@ def guiMain(args=None):
timerFrame = Frame(drowDownFrame)
timerVar = StringVar()
timerVar.set('none')
timerOptionMenu = OptionMenu(timerFrame, timerVar, 'none', 'timed', 'timed-ohko', 'timed-countdown')
timerOptionMenu = OptionMenu(timerFrame, timerVar, 'none', 'display', 'timed', 'timed-ohko', 'timed-countdown')
timerOptionMenu.pack(side=RIGHT)
timerLabel = Label(timerFrame, text='Timer setting')
timerLabel.pack(side=LEFT)