Remove the border around the video box in the detached video dialog

This commit is contained in:
Thomas Goyne 2013-01-09 19:26:39 -08:00
parent 442bbcc682
commit cb1b5401e3
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ DialogDetachedVideo::DialogDetachedVideo(agi::Context *context)
// Set sizer
wxSizer *mainSizer = new wxBoxSizer(wxVERTICAL);
mainSizer->Add(videoBox,1,wxEXPAND | wxALL,5);
mainSizer->Add(videoBox,1,wxEXPAND);
SetSizerAndFit(mainSizer);
// Ensure we can grow smaller, without these the window is locked to at least the initial size