mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-10 17:38:17 +00:00
Handle global hotkeys even when no element has focus (#8998)
This fixes hotkeys not working when pressing the column “back” button, for instance.
This commit is contained in:
parent
7085b21f70
commit
adb06baef6
|
@ -460,7 +460,7 @@ class UI extends React.PureComponent {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<HotKeys keyMap={keyMap} handlers={handlers} ref={this.setHotkeysRef}>
|
<HotKeys keyMap={keyMap} handlers={handlers} ref={this.setHotkeysRef} attach={window} focused>
|
||||||
<div className={classNames('ui', { 'is-composing': isComposing })} ref={this.setRef} style={{ pointerEvents: dropdownMenuIsOpen ? 'none' : null }}>
|
<div className={classNames('ui', { 'is-composing': isComposing })} ref={this.setRef} style={{ pointerEvents: dropdownMenuIsOpen ? 'none' : null }}>
|
||||||
<TabsBar />
|
<TabsBar />
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue