From 5ac5f91cd96724a5b1ffeabc257bd52388a9145a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 8 Apr 2015 08:40:47 +0530 Subject: [PATCH] ... --- src/calibre/gui2/tweak_book/reports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/tweak_book/reports.py b/src/calibre/gui2/tweak_book/reports.py index c68447dd19..1bc58b022a 100644 --- a/src/calibre/gui2/tweak_book/reports.py +++ b/src/calibre/gui2/tweak_book/reports.py @@ -763,7 +763,7 @@ class CharsModel(FileCollection): if col == 0: return entry.char if col == 1: - return {0xa:'LINE FEED', 0xd:'CARRIAGE RETURN'}.get(entry.codepoint, character_name_from_code(entry.codepoint)) + return {0xa:'LINE FEED', 0xd:'CARRIAGE RETURN', 0x9:'TAB'}.get(entry.codepoint, character_name_from_code(entry.codepoint)) if col == 2: return ('U+%04X' if entry.codepoint < 0x10000 else 'U+%06X') % entry.codepoint if col == 3: