From 3ca327fd76b54d29a802a2a28299d407c9d10eb3 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sat, 30 Jan 2016 16:59:22 -0800 Subject: [PATCH] UI: Resize program view if resolution settings changed --- obs/window-basic-main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/obs/window-basic-main.cpp b/obs/window-basic-main.cpp index 5d9f213b5..4ea47a8c0 100644 --- a/obs/window-basic-main.cpp +++ b/obs/window-basic-main.cpp @@ -2276,6 +2276,8 @@ int OBSBasic::ResetVideo() } } else if (ret == OBS_VIDEO_SUCCESS) { ResizePreview(ovi.base_width, ovi.base_height); + if (program) + ResizeProgram(ovi.base_width, ovi.base_height); } return ret; -- GitLab