diff --git a/Telegram/SourceFiles/history/view/history_view_view_button.cpp b/Telegram/SourceFiles/history/view/history_view_view_button.cpp index 8c4ecdc7b..c1f33bda1 100644 --- a/Telegram/SourceFiles/history/view/history_view_view_button.cpp +++ b/Telegram/SourceFiles/history/view/history_view_view_button.cpp @@ -113,7 +113,9 @@ void ViewButton::draw( p.save(); { PainterHighQualityEnabler hq(p); - p.setPen(stm->fwdTextPalette.linkFg); + auto pen = stm->fwdTextPalette.linkFg->p; + pen.setWidth(st::lineWidth); + p.setPen(pen); p.setBrush(Qt::NoBrush); p.drawRoundedRect(r, st::roundRadiusLarge, st::roundRadiusLarge); diff --git a/Telegram/SourceFiles/ui/chat/chat.style b/Telegram/SourceFiles/ui/chat/chat.style index 99132df93..433164134 100644 --- a/Telegram/SourceFiles/ui/chat/chat.style +++ b/Telegram/SourceFiles/ui/chat/chat.style @@ -753,7 +753,7 @@ historyPollInChosenSelected: icon {{ "poll_select_check", historyFileInIconFgSel historyViewButtonHeight: 42px; historyViewButtonMargins: margins(5px, 5px, 5px, 5px); historyViewButtonOutline: margins(2px, 2px, 2px, 2px); -historyViewButtonTextStyle: defaultTextStyle; +historyViewButtonTextStyle: semiboldTextStyle; historyCommentsButtonHeight: 40px; historyCommentsSkipLeft: 9px;