Fix QMessageBox icons using the default rather than the Dolphin logo

This commit is contained in:
Antonio Maiorano 2018-10-02 00:26:43 -04:00
commit 165ac1c29e
2 changed files with 3 additions and 3 deletions

View file

@ -314,7 +314,7 @@ void GeneralPane::OnSaveConfig()
void GeneralPane::GenerateNewIdentity()
{
DolphinAnalytics::Instance()->GenerateNewIdentity();
QMessageBox message_box;
QMessageBox message_box(this);
message_box.setIcon(QMessageBox::Information);
message_box.setWindowTitle(tr("Identity Generation"));
message_box.setText(tr("New identity generated."));