Contacts: remove cm icon

This commit is contained in:
tobtoht 2021-10-23 15:27:36 +02:00
parent 09e4185cab
commit 6f5ac0a06e
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C

View file

@ -50,7 +50,7 @@ ContactsWidget::ContactsWidget(QSharedPointer<AppContext> ctx, QWidget *parent)
// context menu
ui->contacts->setContextMenuPolicy(Qt::CustomContextMenu);
m_contextMenu = new QMenu(ui->contacts);
m_contextMenu->addAction(icons()->icon("person.svg"), "New contact", [this]{
m_contextMenu->addAction("New contact", [this]{
this->newContact();
});