diff --git a/src/widgets/accountpopup.cpp b/src/widgets/accountpopup.cpp index 65e172ada..e990b04a4 100644 --- a/src/widgets/accountpopup.cpp +++ b/src/widgets/accountpopup.cpp @@ -37,15 +37,19 @@ AccountPopupWidget::AccountPopupWidget(SharedChannel _channel) this->permission = permissions::User; for (auto button : this->ui->profileLayout->findChildren()) { button->setFocusProxy(this); + button->setAttribute(Qt::WA_MacShowFocusRect, 0); } for (auto button : this->ui->userLayout->findChildren()) { button->setFocusProxy(this); + button->setAttribute(Qt::WA_MacShowFocusRect, 0); } for (auto button : this->ui->modLayout->findChildren()) { button->setFocusProxy(this); + button->setAttribute(Qt::WA_MacShowFocusRect, 0); } for (auto button : this->ui->ownerLayout->findChildren()) { button->setFocusProxy(this); + button->setAttribute(Qt::WA_MacShowFocusRect, 0); } this->timeout(this->ui->purge, 1);