From eb70d6eeaafc73b8db3e3ed05a2d0b7b208a6778 Mon Sep 17 00:00:00 2001 From: Denio Date: Mon, 18 Nov 2019 17:25:59 +0100 Subject: [PATCH] change message box when change currency --- src/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index d1701b1..da3fc8e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -430,8 +430,8 @@ void MainWindow::setupSettingsModal() { QObject::connect(settings.comboBoxCurrency, &QComboBox::currentTextChanged, [=] (QString currency_name) { this->slot_change_currency(currency_name); - // Tell the user that it will take some seconds - QMessageBox::information(this, tr("Currency Change"), tr("This change will take some seconds"), QMessageBox::Ok); + // Tell the user to restart + QMessageBox::information(this, tr("Currency Change"), tr("Please restart SilentDragonLite to have new currencies apply"), QMessageBox::Ok); });