From 10022a41a9d5e33da57b1ddabf4d24b60d100744 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Thu, 16 Aug 2018 13:19:15 -0700 Subject: [PATCH] UI: Use qss themeID for red labels in properties view --- UI/properties-view.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/UI/properties-view.cpp b/UI/properties-view.cpp index 68edeea11..5ace04dba 100644 --- a/UI/properties-view.cpp +++ b/UI/properties-view.cpp @@ -1198,9 +1198,9 @@ static void UpdateFPSLabels(OBSFrameRatePropertyWidget *w) if (!valid_fps) { w->currentFPS->setHidden(true); w->timePerFrame->setHidden(true); - if (!option) - w->warningLabel->setStyleSheet( - "QLabel { color: red; }"); + if (!option) { + w->warningLabel->setProperty("themeID", "error"); + } return; } @@ -1210,9 +1210,9 @@ static void UpdateFPSLabels(OBSFrameRatePropertyWidget *w) media_frames_per_second match{}; if (!option && !matches_ranges(match, *valid_fps, w->fps_ranges, true)) - w->warningLabel->setStyleSheet("QLabel { color: red; }"); + w->warningLabel->setProperty("themeID", "error"); else - w->warningLabel->setStyleSheet(""); + w->warningLabel->setProperty("themeID", ""); auto convert_to_fps = media_frames_per_second_to_fps; auto convert_to_frame_interval =