From 12265ac449ecb275dbfc34fcfe78749cff75d3f6 Mon Sep 17 00:00:00 2001 From: bth Date: Thu, 27 Dec 2018 20:04:48 +0100 Subject: [PATCH] UI: Fix Defaults button not triggering UI update Update all UI at default values when clicks "Defaults" button in the source Properties. This fixes mantis issue 1242. Closes obsproject/obs-studio#1592 --- UI/window-basic-properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-basic-properties.cpp b/UI/window-basic-properties.cpp index a03f18770..4f2a1afe5 100644 --- a/UI/window-basic-properties.cpp +++ b/UI/window-basic-properties.cpp @@ -189,7 +189,7 @@ void OBSBasicProperties::on_buttonBox_clicked(QAbstractButton *button) if (!view->DeferUpdate()) obs_source_update(source, nullptr); - view->RefreshProperties(); + view->ReloadProperties(); } }