diff options
| -rw-r--r-- | src/courtroom.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp index a12c95ae..cdadfe84 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -3,6 +3,9 @@ Courtroom::Courtroom(AOApplication *p_ao_app) : QMainWindow() { ao_app = p_ao_app; + + this->setWindowFlags( (this->windowFlags() | Qt::CustomizeWindowHint) & ~Qt::WindowMaximizeButtonHint); + ao_app->initBASS(); qsrand(static_cast<uint>(QDateTime::currentMSecsSinceEpoch() / 1000)); |
