new ui elements for timing
This commit is contained in:
@@ -126,20 +126,20 @@ class PrimaryOverlay(threading.Thread):
|
||||
|
||||
self.global_timeout_use = tk.StringVar(self.root, value='0')
|
||||
self.hourly_breaks_use = tk.StringVar(self.root, value='0')
|
||||
self.break_duration_use = tk.StringVar(self.root, value='3')
|
||||
self.break_duration_use = tk.StringVar(self.root, value='1-3')
|
||||
|
||||
self.global_timeout_label = tk.Label(self.timing_frame, text="Stop after (h):", font=("Helvetica", 10, "bold"),
|
||||
background="grey", width='13')
|
||||
background="grey", width='12')
|
||||
self.hourly_breaks_label = tk.Label(self.timing_frame, text="Breaks:", font=("Helvetica", 10, "bold"),
|
||||
background="grey", width='13')
|
||||
background="grey", width='12')
|
||||
self.break_duration_label = tk.Label(self.timing_frame, text="Break time (m):", font=("Helvetica", 10, "bold"),
|
||||
background="grey", width='13')
|
||||
background="grey", width='12')
|
||||
self.global_timeout_entry = tk.Entry(self.timing_frame, textvariable=self.global_timeout_use, font=("Helvetica", 10, "bold"),
|
||||
width='2')
|
||||
width='3')
|
||||
self.hourly_breaks_entry = tk.Entry(self.timing_frame, textvariable=self.hourly_breaks_use, font=("Helvetica", 10, "bold"),
|
||||
width='2')
|
||||
width='3')
|
||||
self.break_duration_entry = tk.Entry(self.timing_frame, textvariable=self.break_duration_use, font=("Helvetica", 10, "bold"),
|
||||
width='2', state=tk.DISABLED)
|
||||
width='3', state=tk.DISABLED)
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user