We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b9f2c3 commit 541bb83Copy full SHA for 541bb83
tools/cabana/detailwidget.cc
@@ -232,9 +232,16 @@ WelcomeWidget::WelcomeWidget(QWidget *parent) : QWidget(parent) {
232
return hlayout;
233
};
234
235
+ auto lb = new QLabel(tr("<-Select a message to to view details"));
236
+ lb->setAlignment(Qt::AlignHCenter);
237
+ main_layout->addWidget(lb);
238
main_layout->addLayout(newShortcutRow("Pause", "Space"));
239
main_layout->addLayout(newShortcutRow("Help", "Alt + H"));
240
main_layout->addStretch(0);
241
242
setStyleSheet("QLabel{color:darkGray;}");
243
+ QPalette pal = palette();
244
+ pal.setColor(QPalette::Window, QApplication::style()->standardPalette().color(QPalette::Base));
245
+ setPalette(pal);
246
+ setAutoFillBackground(true);
247
}
0 commit comments