From e1a32f8eac01f517784e12adae007b6c983e7ddd Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 31 Dec 2013 07:12:38 -0700 Subject: [PATCH] make it use GetClientSize instead of GetMinSize for when resizing the panel (though at this point I don't think it's going to help anymore) --- obs/window-basic-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/window-basic-main.cpp b/obs/window-basic-main.cpp index 5b38780dc..830b58ef2 100644 --- a/obs/window-basic-main.cpp +++ b/obs/window-basic-main.cpp @@ -191,7 +191,7 @@ void OBSBasic::OnResizePreview(wxSizeEvent &event) { event.Skip(); - wxSize newSize = previewPanel->GetMinSize(); + wxSize newSize = previewPanel->GetClientSize(); graphics_t graphics = obs_graphics(); if (graphics) {