Browse Source

Just say Error, since we show this error for all errors, not just transaction errors

custom_themes
Duke 4 months ago
parent
commit
f914f6d61a
  1. 2
      src/connection.cpp

2
src/connection.cpp

@ -958,7 +958,7 @@ void Connection::showTxError(const QString& error) {
return;
shown = true;
QMessageBox::critical(main, QObject::tr("Transaction Error"), QObject::tr("There was an error! : ") + "\n\n"
QMessageBox::critical(main, QObject::tr("Error"), QObject::tr("There was an error! : ") + "\n\n"
+ error, QMessageBox::StandardButton::Ok);
shown = false;
}

Loading…
Cancel
Save