Currently mistake navigation shortcut keys are page up and page down as below
} else if (event.key == 'PageUp') {
do {
decPlyCounter();
} while (!stopCondition(true))
updateState()
} else if (event.key == 'PageDown') {
do {
incPlyCounter();
} while (!stopCondition(true))
updateState()
}
My main machine does not have page up or page down key (mac book pro) so I have to click manually.
Something like [ for prev and ] for next could work, I think. If you agree, I can open PR myself for the change 👍
Currently mistake navigation shortcut keys are page up and page down as below
My main machine does not have page up or page down key (mac book pro) so I have to click manually.
Something like
[
for prev and]
for next could work, I think. If you agree, I can open PR myself for the change 👍