From ef364e998fc0edee3acacb319aa7f974b9c57d52 Mon Sep 17 00:00:00 2001 From: paulkim3151 <33952999+paulkim3151@users.noreply.github.com> Date: Mon, 3 Jun 2019 01:46:59 +0900 Subject: [PATCH] Enable to handle .pptx .xlsx .docx extensions --- Telegram/SourceFiles/layout.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Telegram/SourceFiles/layout.cpp b/Telegram/SourceFiles/layout.cpp index 4e065af95..06808805a 100644 --- a/Telegram/SourceFiles/layout.cpp +++ b/Telegram/SourceFiles/layout.cpp @@ -95,17 +95,20 @@ int32 documentColorIndex(DocumentData *document, QString &ext) { ? document->mimeString().toLower() : QString(); if (name.endsWith(qstr(".doc")) || + name.endsWith(qstr(".docx")) || name.endsWith(qstr(".txt")) || name.endsWith(qstr(".psd")) || mime.startsWith(qstr("text/"))) { colorIndex = 0; } else if ( name.endsWith(qstr(".xls")) || + name.endsWith(qstr(".xlsx")) || name.endsWith(qstr(".csv"))) { colorIndex = 1; } else if ( name.endsWith(qstr(".pdf")) || name.endsWith(qstr(".ppt")) || + name.endsWith(qstr(".pptx")) || name.endsWith(qstr(".key"))) { colorIndex = 2; } else if (