Use lightButtonFg[Over] for Hide All Notifications.

Fixes #3521.
This commit is contained in:
John Preston 2017-06-14 12:25:09 +03:00
parent 7fdac9cd94
commit 6fe0fe6fd6

View File

@ -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);
}