text window starts scrolling at bottom (#20587)

* text starts scrolling at bottom

* comment
old-commit-hash: 9e4748db8bca27b6909d03bc87d2d309636b5c11
This commit is contained in:
iejMac
2021-04-05 14:27:14 -07:00
committed by GitHub
parent 421e27fabd
commit 71f065bf19
+6
View File
@@ -1,5 +1,6 @@
#include <QLabel>
#include <QWidget>
#include <QScrollBar>
#include <QPushButton>
#include <QVBoxLayout>
#include <QApplication>
@@ -23,6 +24,11 @@ int main(int argc, char *argv[]) {
scroll->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
layout->addWidget(scroll, 0, 0, Qt::AlignTop);
// Scroll to the bottom
QObject::connect(scroll->verticalScrollBar(), &QAbstractSlider::rangeChanged, [=](){
scroll->verticalScrollBar()->setValue(scroll->verticalScrollBar()->maximum());
});
QPushButton *btn = new QPushButton();
#ifdef __aarch64__
btn->setText("Reboot");