diff --git a/src/pyj/read_book/selection_bar.pyj b/src/pyj/read_book/selection_bar.pyj index df8273bd8e..b01b6ab5e3 100644 --- a/src/pyj/read_book/selection_bar.pyj +++ b/src/pyj/read_book/selection_bar.pyj @@ -566,6 +566,9 @@ class SelectionBar: if ev.key is 'Escape': self.clear_selection() return + if ev.key is 'Delete': + self.remove_highlight() + return if ev.key and ev.key.toLowerCase() is 'c' and ev.ctrlKey: self.copy_to_clipboard() return