diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2020-07-31 16:17:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-31 16:17:05 -0500 |
| commit | ec1c95bdb33dd063880c4cb6c3c9c3cf5d0ed454 (patch) | |
| tree | 19e9217126837cac1ae3ab025b050bb3cfbda64b /src/aoapplication.cpp | |
| parent | 8ea01d4c3139e27e84091c0b24266d9fb50ddf38 (diff) | |
| parent | 36b5af3cb9ce8e5530c5bd9353a4e2f10da506b6 (diff) | |
Merge pull request #217 from AttorneyOnline/kfo-ao2
Final mega-merge with the Killing Fever Online client, along with other associated bugfixes and feature additions.
This commit is release-ready.
Diffstat (limited to 'src/aoapplication.cpp')
| -rw-r--r-- | src/aoapplication.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/aoapplication.cpp b/src/aoapplication.cpp index 3b5e836d..e1e9e7fe 100644 --- a/src/aoapplication.cpp +++ b/src/aoapplication.cpp @@ -1,12 +1,13 @@ #include "aoapplication.h" -#include "aocaseannouncerdialog.h" -#include "aooptionsdialog.h" #include "courtroom.h" #include "debug_functions.h" #include "lobby.h" #include "networkmanager.h" +#include "aocaseannouncerdialog.h" +#include "aooptionsdialog.h" + AOApplication::AOApplication(int &argc, char **argv) : QApplication(argc, argv) { // Create the QSettings class that points to the config.ini. @@ -125,7 +126,6 @@ void AOApplication::add_favorite_server(int p_server) void AOApplication::server_disconnected() { if (courtroom_constructed) { - beep(); call_notice(tr("Disconnected from server.")); construct_lobby(); destruct_courtroom(); @@ -135,6 +135,7 @@ void AOApplication::server_disconnected() void AOApplication::loading_cancelled() { destruct_courtroom(); + w_lobby->hide_loading_overlay(); } |
