added f and i hotkeys for toggling invert filter

`f` (70) "filter" or `i` (73) "invert" without any control characters pressed
This commit is contained in:
MAZ 2025-07-29 21:26:46 +02:00
parent 6cb11e420a
commit 07137daf7d

View File

@ -3048,6 +3048,12 @@ function onKeyDown(evt) {
case 115: // F4
this.pdfSidebar?.toggle();
break;
case 70: // 'f'
case 73: // 'i'
onInvert.call(this, {
state: !this.appConfig.toolbar.invert.classList.contains("toggled"),
});
}
if (