diff options
| author | Cerapter <cerap@protonmail.com> | 2018-08-16 20:56:26 +0200 |
|---|---|---|
| committer | Cerapter <cerap@protonmail.com> | 2018-08-16 20:56:26 +0200 |
| commit | 572888a9dde7850fd618d6a14d303de31ae9161b (patch) | |
| tree | f5ca05d599fa9820f38ea3e776238a858d529fb8 | |
| parent | 0368e7dc459b3057f8c7d0e6e329de0d3cd7c424 (diff) | |
Minor fix regarding the /pos command and the NG/G buttons.
| -rw-r--r-- | courtroom.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/courtroom.cpp b/courtroom.cpp index 2555e64d..6e855f36 100644 --- a/courtroom.cpp +++ b/courtroom.cpp @@ -2255,6 +2255,8 @@ void Courtroom::on_ooc_return_pressed() { ui_witness_testimony->show(); ui_cross_examination->show(); + ui_guilty->show(); + ui_not_guilty->show(); ui_defense_minus->show(); ui_defense_plus->show(); ui_prosecution_minus->show(); @@ -2264,6 +2266,8 @@ void Courtroom::on_ooc_return_pressed() { ui_witness_testimony->hide(); ui_cross_examination->hide(); + ui_guilty->hide(); + ui_not_guilty->hide(); ui_defense_minus->hide(); ui_defense_plus->hide(); ui_prosecution_minus->hide(); |
