don't prevent select-element devTools action (#1446)
This commit is contained in:
parent
519a9ca493
commit
83199164ae
@ -1048,6 +1048,11 @@ class App extends React.Component<any, AppState> {
|
|||||||
// Input handling
|
// Input handling
|
||||||
|
|
||||||
private onKeyDown = withBatchedUpdates((event: KeyboardEvent) => {
|
private onKeyDown = withBatchedUpdates((event: KeyboardEvent) => {
|
||||||
|
// ensures we don't prevent devTools select-element feature
|
||||||
|
if (event[KEYS.CTRL_OR_CMD] && event.shiftKey && event.key === "C") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
(isWritableElement(event.target) && event.key !== KEYS.ESCAPE) ||
|
(isWritableElement(event.target) && event.key !== KEYS.ESCAPE) ||
|
||||||
// case: using arrows to move between buttons
|
// case: using arrows to move between buttons
|
||||||
|
Loading…
x
Reference in New Issue
Block a user