Increase maximum register count from 100 to 2500 in Spinbox

This commit is contained in:
AaronL725
2026-05-11 16:24:23 +08:00
parent 48fd6925f8
commit f000288a8f
+1 -1
View File
@@ -2449,7 +2449,7 @@ class GrokRegisterGUI:
self.count_spinbox = tk.Spinbox( self.count_spinbox = tk.Spinbox(
config_frame, config_frame,
from_=1, from_=1,
to=100, to=2500,
width=8, width=8,
textvariable=self.count_var, textvariable=self.count_var,
bg=UI_ENTRY_BG, bg=UI_ENTRY_BG,