Fixed circle drawing in titles of some sections in channel earn info.

This commit is contained in:
23rd 2024-04-03 19:31:52 +03:00 committed by John Preston
parent 2a388ae4b2
commit b31d43cbed
2 changed files with 2 additions and 0 deletions

View File

@ -372,6 +372,7 @@ void InnerWidget::fill() {
widget->paintRequest(
) | rpl::start_with_next([=] {
auto p = Painter(widget);
auto hq = PainterHighQualityEnabler(p);
p.setPen(Qt::NoPen);
p.setBrush(st::activeButtonBg);
p.drawEllipse(rect);

View File

@ -60,6 +60,7 @@ void AboutBox(
widget->paintRequest(
) | rpl::start_with_next([=] {
auto p = Painter(widget);
auto hq = PainterHighQualityEnabler(p);
p.setPen(Qt::NoPen);
p.setBrush(st::activeButtonBg);
p.drawEllipse(rect);