You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the step is not specified, the default validation requires that the
values are integers. Since the default value is 0.5, this prevented the
settings from being changed.
Now the step is 0.1 which should give enough control without clashing
with the default
<input type="checkbox" form="settings" name="spaceScroll" value="1"#{ifsettings.spaceScrollthen' checked'else''}>Use spacebar to scroll during search
61
61
</label>
62
62
<label class="_settings-label">
63
-
<input type="number" form="settings" name="spaceTimeout" min="0" max="5" value="#{settings.spaceTimeout}"> Delay until you can scroll by pressing space
63
+
<input type="number" step="0.1" form="settings" name="spaceTimeout" min="0" max="5" value="#{settings.spaceTimeout}"> Delay until you can scroll by pressing space
0 commit comments