| 280 | } |
| 281 | |
| 282 | void applyStatusBarCompactLabelStyle(QLabel* label, const QString& color) |
| 283 | { |
| 284 | if (!label) { |
| 285 | return; |
| 286 | } |
| 287 | |
| 288 | label->setObjectName(kStatusBarCompactLabelObjectName); |
| 289 | AetherSDR::ThemeManager::instance().applyStyleSheet(label, statusBarCompactLabelStyle(color)); |
| 290 | } |
| 291 | |
| 292 | void setStatusBarStationText(QLabel* label, const QString& text) |
| 293 | { |
no test coverage detected