From d120a4758bf7f09b4df9475c0ee37fdae7c4a5b8 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Tue, 15 Jul 2008 17:49:15 +0000 Subject: [PATCH] Fix bug #742 and possibly also #465. Needs testing on non-Mac platforms to see if there's visual glitches with video visual typesetting toolbar. Originally committed to SVN as r2256. --- aegisub/video_box.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/video_box.cpp b/aegisub/video_box.cpp index faae2688a..8e591334b 100644 --- a/aegisub/video_box.cpp +++ b/aegisub/video_box.cpp @@ -126,7 +126,7 @@ VideoBox::VideoBox(wxWindow *parent) wxSizer *topTopSizer = new wxBoxSizer(wxHORIZONTAL); wxSizer *topSizer = new wxBoxSizer(wxVERTICAL); visualSubToolBar->Show(false); - topTopSizer->Add(visualToolBar,0,wxEXPAND,0); + topTopSizer->Add(visualToolBar,0,0,0); topTopSizer->Add(videoDisplay,1,wxEXPAND,0); topSizer->Add(topTopSizer,1,wxEXPAND,0); topSizer->Add(visualSubToolBar,0,wxEXPAND | wxBOTTOM,4);