From e27ab8d5d78f9928f472e98ad4b9504b7d9ab50b Mon Sep 17 00:00:00 2001 From: Denio Date: Sun, 17 Nov 2019 23:17:53 +0100 Subject: [PATCH] Message that the change will take some seconds --- src/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index a1f422d..0239c4d 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -429,6 +429,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); });