From f0dba8d967be90138dbba81668f4b5eaad8d1751 Mon Sep 17 00:00:00 2001 From: Felix Kauselmann <2039670+selmf@users.noreply.github.com> Date: Fri, 8 May 2015 21:28:36 +0200 Subject: [PATCH] Fix .cbt cover related typo in db/comic_model.cpp --- YACReaderLibrary/db/comic_model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReaderLibrary/db/comic_model.cpp b/YACReaderLibrary/db/comic_model.cpp index 922360b6..19b92834 100644 --- a/YACReaderLibrary/db/comic_model.cpp +++ b/YACReaderLibrary/db/comic_model.cpp @@ -365,7 +365,7 @@ QVariant ComicModel::headerData(int section, Qt::Orientation orientation, return QVariant(QIcon(":/images/7z.png")); else if (ext.compare("cb7",Qt::CaseInsensitive) == 0) return QVariant(QIcon(":/images/comic7z.png")); - else if (ext.compare("cb7",Qt::CaseInsensitive) == 0) + else if (ext.compare("cbt",Qt::CaseInsensitive) == 0) return QVariant(QIcon(":/images/comicTar.png")); }