From c284d26163a6fd0d675bab725ee0d9bb94defffd Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 10 Feb 2019 18:34:22 -0800 Subject: [PATCH] UI: Increase Twitch "Stream Stats" height by 50 The default size was too small for affiliates/partners, and would cut off subscribers. --- UI/auth-twitch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/auth-twitch.cpp b/UI/auth-twitch.cpp index b89d09976..4a52e7e40 100644 --- a/UI/auth-twitch.cpp +++ b/UI/auth-twitch.cpp @@ -292,8 +292,8 @@ void TwitchAuth::LoadSecondaryUIPanes() stat.reset(new TwitchWidget()); stat->setObjectName("twitchStats"); - stat->resize(200, 200); - stat->setMinimumSize(200, 200); + stat->resize(200, 250); + stat->setMinimumSize(200, 150); stat->setWindowTitle(QTStr("TwitchAuth.Stats")); stat->setAllowedAreas(Qt::AllDockWidgetAreas);