Skip to content

Commit

Permalink
fixed overlapping of folder swap and penalties
Browse files Browse the repository at this point in the history
  • Loading branch information
tillhanke committed Oct 8, 2018
1 parent c5a8ba7 commit 260378f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ def __init__(self, master):
self.timer_up = Timer(master=self.master, col=col, row=row+3, countdown=False)
self.timer_down = Timer(master=self.master, col=col+6, row=row+3, countdown=True) # takes 4 rows!

self.penalty_column = col
self.penalty_row = row + 7
self.setup_penalties()

lbl1 = Label(master=root, textvariable=self.path_main)
lbl1.grid(columnspan=8, column=col)
button2 = Button(text="Choose main folder containing Input", command=self.browse_button)
button2.grid(columnspan=8, column=col)

self.penalty_column = col
self.penalty_row = row + 9
self.setup_penalties()

self.close_button = Button(master, text="Close", command=master.quit)
self.close_button.grid(columnspan=8, column=col, sticky=E+W)

Expand Down

0 comments on commit 260378f

Please sign in to comment.