Reputation: 14081
Is there a way to set a minimum height for a QStatusBar
QStatusBar
only supports colorQStatusBar::item
QStatusBar QLabel
Is there a way to force a minimum size of QStatusBar
(per stylesheet)?
Upvotes: 1
Views: 1080
Reputation: 656
Works for me:
ui->statusBar->setStyleSheet("QStatusBar {min-height: 50; background-color: black; }");
Upvotes: 3