mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
Allow decimal timer delays
This commit is contained in:
parent
4f10a2818f
commit
699a63b85a
1 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
<SpinBoxFloatRow
|
<SpinBoxFloatRow
|
||||||
bind:value={$config.secondsToShowQuestion}
|
bind:value={$config.secondsToShowQuestion}
|
||||||
defaultValue={defaults.secondsToShowQuestion}
|
defaultValue={defaults.secondsToShowQuestion}
|
||||||
step={1}
|
step={0.1}
|
||||||
>
|
>
|
||||||
<SettingTitle
|
<SettingTitle
|
||||||
on:click={() =>
|
on:click={() =>
|
||||||
|
@ -166,7 +166,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
<SpinBoxFloatRow
|
<SpinBoxFloatRow
|
||||||
bind:value={$config.secondsToShowAnswer}
|
bind:value={$config.secondsToShowAnswer}
|
||||||
defaultValue={defaults.secondsToShowAnswer}
|
defaultValue={defaults.secondsToShowAnswer}
|
||||||
step={1}
|
step={0.1}
|
||||||
>
|
>
|
||||||
<SettingTitle
|
<SettingTitle
|
||||||
on:click={() =>
|
on:click={() =>
|
||||||
|
|
Loading…
Reference in a new issue