From 0041b33804799479eecc55e3a0cc72cb6b81a93f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 17 Jan 2014 12:32:28 +0530 Subject: [PATCH] Change emblem for duplicates to error symbol --- src/calibre/gui2/tweak_book/file_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/tweak_book/file_list.py b/src/calibre/gui2/tweak_book/file_list.py index 8dc200304f..8399e25274 100644 --- a/src/calibre/gui2/tweak_book/file_list.py +++ b/src/calibre/gui2/tweak_book/file_list.py @@ -380,7 +380,7 @@ class FileList(QTreeWidget): tooltips.append(_('This file is a text file that is not referenced in the spine')) if category == 'text' and name in processed: # Duplicate entry in spine - emblems.append('dialog_warning.png') + emblems.append('dialog_error.png') tooltips.append(_('This file occurs more than once in the spine')) render_emblems(item, emblems)