diff options
| author | Salanto <62221668+Salanto@users.noreply.github.com> | 2022-08-20 14:57:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-20 14:57:38 +0200 |
| commit | ee747eaac90281e08ebed672bf10a113af7400ea (patch) | |
| tree | 45abb9fecc6c54ea5cc17ba6f49b676763737f43 | |
| parent | f55cbe543be1ef35420c435495280909be90bdfe (diff) | |
Raise pair list after courtroom construction (#859)
| -rw-r--r-- | src/courtroom.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp index efea86d5..ac9f43c4 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -409,6 +409,10 @@ Courtroom::Courtroom(AOApplication *p_ao_app) : QMainWindow() initialize_emotes(); initialize_evidence(); + // TODO : Properly handle widget creation order. + // Good enough for 2.10 + ui_pair_list->raise(); + construct_char_select(); connect(keepalive_timer, &QTimer::timeout, this, &Courtroom::ping_server); |
