From 81bb96246521f72ada0bc273e51a55e05a6eb0ad Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 8 Oct 2014 16:20:09 +0530 Subject: [PATCH] ... --- src/calibre/gui2/comments_editor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/comments_editor.py b/src/calibre/gui2/comments_editor.py index 6931d7a711..11d723275c 100644 --- a/src/calibre/gui2/comments_editor.py +++ b/src/calibre/gui2/comments_editor.py @@ -387,6 +387,7 @@ class EditorWidget(QWebView): # {{{ Qt.Key_Tab, Qt.Key_Escape, Qt.Key_Backtab): if (ev.key() == Qt.Key_Tab and ev.modifiers() & Qt.ControlModifier and ev.type() == ev.KeyPress): self.exec_command('insertHTML', '\t') + ev.accept() return True ev.ignore() return False