Skip to content

Commit 8b9d5d6

Browse files
committed
GUI - on first boot make sure incoming pane is large and scrolled to the top
This makes the initial boot messages clearer and more friendly.
1 parent 61ea567 commit 8b9d5d6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/gui/qt/mainwindow.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,9 @@ void MainWindow::showWelcomeScreen() {
477477
startupPane->show();
478478
startupPane->raise();
479479
startupPane->activateWindow();
480+
incomingPane->setFixedWidth(ScaleWidthForDPI(600));
481+
incomingPane->setFixedHeight(ScaleHeightForDPI(50));
482+
outputPane->verticalScrollBar()->setValue(0);
480483
}
481484
}
482485

0 commit comments

Comments
 (0)