Update game_info.cpp

This commit is contained in:
Xphalnos 2024-08-04 14:20:41 +02:00 committed by GitHub
parent 20c2567f2b
commit 18e160ec43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,7 @@ void GameInfoClass::GetGameInfo(QWidget* parent) {
}).results(); }).results();
// Progress bar, please be patient :) // Progress bar, please be patient :)
QProgressDialog dialog("Loading game list...", "Cancel", 0, 0, parent); QProgressDialog dialog("Loading game list, please wait :3", "Cancel", 0, 0, parent);
dialog.setWindowTitle("Loading..."); dialog.setWindowTitle("Loading...");
QFutureWatcher<void> futureWatcher; QFutureWatcher<void> futureWatcher;
@ -43,4 +43,4 @@ void GameInfoClass::GetGameInfo(QWidget* parent) {
&QProgressDialog::setValue); &QProgressDialog::setValue);
dialog.exec(); dialog.exec();
} }