From 14480fe0257371db89911ba2c448cad3204f9aba Mon Sep 17 00:00:00 2001 From: Kurt Kartaltepe Date: Sat, 4 Apr 2020 18:57:31 -0700 Subject: [PATCH] UI: Fix previewLabel styling Label renders with default styling instead of using dynamic property because it was already polished. --- UI/window-basic-main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 6bb34ec53..c0697d3dc 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -385,6 +385,7 @@ OBSBasic::OBSBasic(QWidget *parent) statsDock->move(newPos); ui->previewLabel->setProperty("themeID", "previewProgramLabels"); + ui->previewLabel->style()->polish(ui->previewLabel); bool labels = config_get_bool(GetGlobalConfig(), "BasicWindow", "StudioModeLabels");