trigger sidebar status widget repaints on color change

albatross
Adeeb Shihadeh 2021-04-30 14:01:49 -07:00
parent f9a961f6fb
commit 1c89825d86
1 changed files with 5 additions and 1 deletions

View File

@ -46,7 +46,11 @@ void StatusWidget::paintEvent(QPaintEvent *e){
void StatusWidget::update(QString label, QString msg, QColor c) {
status.setText(label);
substatus.setText(msg);
color = c;
if (color != c) {
color = c;
repaint();
}
return;
}