From f000288a8f35c772e7f9ee104cd634e81d528411 Mon Sep 17 00:00:00 2001 From: AaronL725 Date: Mon, 11 May 2026 16:24:23 +0800 Subject: [PATCH] Increase maximum register count from 100 to 2500 in Spinbox --- grok_register_ttk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grok_register_ttk.py b/grok_register_ttk.py index ba43a2e..6e52bac 100755 --- a/grok_register_ttk.py +++ b/grok_register_ttk.py @@ -2449,7 +2449,7 @@ class GrokRegisterGUI: self.count_spinbox = tk.Spinbox( config_frame, from_=1, - to=100, + to=2500, width=8, textvariable=self.count_var, bg=UI_ENTRY_BG,