From 6fe0fe6fd68c47667ab43895b3f2ddcc07cb1e74 Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 14 Jun 2017 12:25:09 +0300 Subject: [PATCH] Use lightButtonFg[Over] for Hide All Notifications. Fixes #3521. --- Telegram/SourceFiles/window/notifications_manager_default.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/window/notifications_manager_default.cpp b/Telegram/SourceFiles/window/notifications_manager_default.cpp index 276aee7b3..f419c9ddb 100644 --- a/Telegram/SourceFiles/window/notifications_manager_default.cpp +++ b/Telegram/SourceFiles/window/notifications_manager_default.cpp @@ -916,7 +916,7 @@ void HideAllButton::paintEvent(QPaintEvent *e) { p.fillRect(width() - st::notifyBorderWidth, st::notifyBorderWidth, st::notifyBorderWidth, height() - 2 * st::notifyBorderWidth, st::notifyBorder); p.setFont(st::defaultLinkButton.font); - p.setPen(st::defaultLinkButton.color); + p.setPen(_mouseOver ? st::lightButtonFgOver : st::lightButtonFg); p.drawText(rect(), lang(lng_notification_hide_all), style::al_center); }