new ui elements for timing

This commit is contained in:
2022-10-19 00:25:59 +02:00
parent 1992c549c1
commit 90ff452e10
4 changed files with 34 additions and 23 deletions

View File

@@ -130,7 +130,7 @@ class PrimaryOverlay(threading.Thread):
self.global_timeout_label = tk.Label(self.timing_frame, text="Stop after (h):", font=("Helvetica", 10, "bold"),
background="grey", width='13')
self.hourly_breaks_label = tk.Label(self.timing_frame, text="Breaks per hour:", font=("Helvetica", 10, "bold"),
self.hourly_breaks_label = tk.Label(self.timing_frame, text="Breaks:", font=("Helvetica", 10, "bold"),
background="grey", width='13')
self.break_duration_label = tk.Label(self.timing_frame, text="Break time (m):", font=("Helvetica", 10, "bold"),
background="grey", width='13')
@@ -139,7 +139,7 @@ class PrimaryOverlay(threading.Thread):
self.hourly_breaks_entry = tk.Entry(self.timing_frame, textvariable=self.hourly_breaks_use, font=("Helvetica", 10, "bold"),
width='2')
self.break_duration_entry = tk.Entry(self.timing_frame, textvariable=self.break_duration_use, font=("Helvetica", 10, "bold"),
width='2')
width='2', state=tk.DISABLED)