Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
dev
-
None
Description
The following program does not terminate the process nor does it shows it up in the taskbar. Thus it is needed to kill the program via TaskManager:
#include <QApplication> #include <QScrollBar> int main(int argc, char *argv[]) { QApplication a(argc, argv); auto scrollBar = new QScrollBar(Qt::Horizontal); scrollBar->resize(200, 50); scrollBar->show(); scrollBar->hide(); return a.exec(); }