From 526b810334e973b70fcb7387b6da3baef29bbb69 Mon Sep 17 00:00:00 2001 From: tytan652 Date: Tue, 18 Oct 2022 19:51:06 +0200 Subject: [PATCH] UI: Fix stats widget status font size --- UI/window-basic-stats.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/UI/window-basic-stats.cpp b/UI/window-basic-stats.cpp index 4719567da..9c3816f6c 100644 --- a/UI/window-basic-stats.cpp +++ b/UI/window-basic-stats.cpp @@ -247,13 +247,6 @@ void OBSBasicStats::AddOutputLabels(QString name) ol.megabytesSent = new QLabel(this); ol.bitrate = new QLabel(this); - int newPointSize = ol.status->font().pointSize(); - newPointSize *= 13; - newPointSize /= 10; - QString qss = - QString("font-size: %1pt").arg(QString::number(newPointSize)); - ol.status->setStyleSheet(qss); - int col = 0; int row = outputLabels.size() + 1; outputLayout->addWidget(ol.name, row, col++);