Merge pull request #1208 from leon-richardt/fix-account-popup

Fix "Manage Accounts" button
This commit is contained in:
pajlada 2019-08-17 11:05:09 +02:00 committed by GitHub
commit 3dcbe89e28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,6 +30,7 @@ AccountSwitchPopupWidget::AccountSwitchPopupWidget(QWidget *parent)
auto hbox = new QHBoxLayout();
auto manageAccountsButton = new QPushButton(this);
manageAccountsButton->setText("Manage Accounts");
manageAccountsButton->setFocusPolicy(Qt::NoFocus);
hbox->addWidget(manageAccountsButton);
vbox->addLayout(hbox);