diff --git a/system/clearpilot/tools/qt_shell.cc b/system/clearpilot/tools/qt_shell.cc index 01b40bd..3402921 100644 --- a/system/clearpilot/tools/qt_shell.cc +++ b/system/clearpilot/tools/qt_shell.cc @@ -73,7 +73,7 @@ int main(int argc, char *argv[]) { QTextEdit *outputDisplay = new QTextEdit; outputDisplay->setFont(QFont("Consolas", 32)); outputDisplay->setReadOnly(true); - outputDisplay->setFixedSize(window.width(), window.height() - (titleLabel ? 150 : 0)); + outputDisplay->setFixedSize(window.width(), window.height()); outputDisplay->setStyleSheet("color: white; background-color: black;"); outputDisplay->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); // Hide the vertical scrollbar layout->addWidget(outputDisplay);