diff --git a/src/calibre/gui2/tweak_book/spell.py b/src/calibre/gui2/tweak_book/spell.py index eee6f2c827..bf899853c8 100644 --- a/src/calibre/gui2/tweak_book/spell.py +++ b/src/calibre/gui2/tweak_book/spell.py @@ -1104,6 +1104,11 @@ class SpellCheck(Dialog): self.suggested_list.setCurrentItem(item) self.suggested_word.setText(s) word_suggested = True + if s is current_word: + f = item.font() + f.setItalic(True) + item.setFont(f) + item.setToolTip(_('The original word')) if not word_suggested: self.suggested_word.setText(current_word)