mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
[Editor] Make the delete button clickable with the space key (bug 1882248)
This commit is contained in:
parent
7cc34cf4a7
commit
f52bf2836f
2 changed files with 38 additions and 1 deletions
|
@ -711,7 +711,9 @@ class AnnotationEditorUIManager {
|
|||
// Those shortcuts can be used in the toolbar for some other actions
|
||||
// like zooming, hence we need to check if the container has the
|
||||
// focus.
|
||||
checker: self => self.#container.contains(document.activeElement),
|
||||
checker: (self, { target: el }) =>
|
||||
!(el instanceof HTMLButtonElement) &&
|
||||
self.#container.contains(document.activeElement),
|
||||
},
|
||||
],
|
||||
[["Escape", "mac+Escape"], proto.unselectAll],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue