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:
parent
6cb11e420a
commit
07137daf7d
@ -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 (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user