From 1282a5a3dc5a0bb14cf5c7a7d1153d15f84ade44 Mon Sep 17 00:00:00 2001 From: Clayton Groeneveld Date: Tue, 21 May 2019 01:43:55 -0500 Subject: [PATCH] UI: Fix issue where rec time left would show negative time The recording time left timer was being called an unnecessary time, in the stats constructor, when it should have only been started when the recording starts. --- UI/window-basic-stats.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/UI/window-basic-stats.cpp b/UI/window-basic-stats.cpp index 3cc7e2925..5c07f65d3 100644 --- a/UI/window-basic-stats.cpp +++ b/UI/window-basic-stats.cpp @@ -176,7 +176,6 @@ OBSBasicStats::OBSBasicStats(QWidget *parent, bool closeable) QObject::connect(&recTimeLeft, &QTimer::timeout, this, &OBSBasicStats::RecordingTimeLeft); recTimeLeft.setInterval(REC_TIME_LEFT_INTERVAL); - recTimeLeft.start(); OBSBasic *main = reinterpret_cast(App()->GetMainWindow());