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)

This commit is contained in:
jp9000 2013-12-31 07:12:38 -07:00
parent 1302e65ee6
commit e1a32f8eac

View File

@ -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) {