summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-25 05:19:06 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-25 05:19:06 +0100
commit489e6a92b9aa940de64a886a1f9b5a420b50c7fc (patch)
treee1a7d202cf04bc2902fc45d191ffe68d24e80528 /src/tools
parent424fb25e9b084ee1cc8d2552f8b22a0a4d3d5f46 (diff)
Viewer kind of works.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dvdomatic.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dvdomatic.cc b/src/tools/dvdomatic.cc
index 8fe447da5..81da111e7 100644
--- a/src/tools/dvdomatic.cc
+++ b/src/tools/dvdomatic.cc
@@ -383,8 +383,8 @@ class App : public wxApp
#endif
wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
- main_sizer->Add (film_editor, 0);
- main_sizer->Add (film_viewer, 1, wxEXPAND);
+ main_sizer->Add (film_editor, 0, wxALL, 6);
+ main_sizer->Add (film_viewer, 1, wxEXPAND | wxALL, 6);
frame->SetSizer (main_sizer);
SetTopWindow (frame);