From 4ffefe76fc8cf5a86579ce7bcc8d47818a77b13d Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 15 Dec 2014 23:40:43 +0300 Subject: [PATCH] fixed new msg badge for retina --- Telegram/SourceFiles/title.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/title.cpp b/Telegram/SourceFiles/title.cpp index 2ca6e2382..1ceea5ee2 100644 --- a/Telegram/SourceFiles/title.cpp +++ b/Telegram/SourceFiles/title.cpp @@ -238,7 +238,7 @@ void TitleWidget::updateCounter() { style::color bg = (App::histories().unreadMuted < counter) ? st::counterBG : st::counterMuteBG; if (counter > 0) { - int32 size = -16; + int32 size = cRetina() ? -32 : -16; switch (cScale()) { case dbisOneAndQuarter: size = -20; break; case dbisOneAndHalf: size = -24; break;