Skip to content

Commit 55237c2

Browse files
committed
Auto-break Bug Fix
Fixed a bug where changing frequency wouldn't be possible after loading auto-break.
1 parent 97e3577 commit 55237c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package/data_management.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,8 @@ def load_autobreak(self):
324324
if self.autobreak_duration == None:
325325
self.autobreak_duration = 5
326326

327-
self.app.frequency_input.configure(placeholder_text=self.autobreak_frequency)
328-
self.app.duration_input.configure(placeholder_text=self.autobreak_duration)
327+
self.app.frequency_input.configure(placeholder_text=self.autobreak_frequency, state="normal")
328+
self.app.duration_input.configure(placeholder_text=self.autobreak_duration, state="normal")
329329
self.app.autobreak_switch.configure(variable=ctk.StringVar(value=self.autobreak_on))
330330

331331
self.app.WINDOW.after(0, self.app.auto_break)

0 commit comments

Comments
 (0)