diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-22 14:21:15 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-22 14:21:15 +0000 |
| commit | e78795bc6d7fa129512fc397eaec7505b9bdab5f (patch) | |
| tree | 52889ff937f027a804269a6f4e07786269c898ce /src | |
| parent | a8e30a77bdd434ea2cdd81407f4ea75664fdce93 (diff) | |
Layout tweak.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_editor.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 061305436..d16d5fc26 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -270,17 +270,17 @@ FilmEditor::make_content_panel () wxBoxSizer* b = new wxBoxSizer (wxVERTICAL); _content_add_file = new wxButton (_content_panel, wxID_ANY, _("Add file(s)...")); - b->Add (_content_add_file, 1, wxEXPAND | wxLEFT | wxRIGHT); + b->Add (_content_add_file, 1, wxEXPAND | wxALL, 2); _content_add_folder = new wxButton (_content_panel, wxID_ANY, _("Add folder...")); - b->Add (_content_add_folder, 1, wxEXPAND | wxLEFT | wxRIGHT); + b->Add (_content_add_folder, 1, wxEXPAND | wxALL, 2); _content_remove = new wxButton (_content_panel, wxID_ANY, _("Remove")); - b->Add (_content_remove, 1, wxEXPAND | wxLEFT | wxRIGHT); + b->Add (_content_remove, 1, wxEXPAND | wxALL, 2); _content_earlier = new wxButton (_content_panel, wxID_ANY, _("Up")); - b->Add (_content_earlier, 1, wxEXPAND); + b->Add (_content_earlier, 1, wxEXPAND | wxALL, 2); _content_later = new wxButton (_content_panel, wxID_ANY, _("Down")); - b->Add (_content_later, 1, wxEXPAND); + b->Add (_content_later, 1, wxEXPAND | wxALL, 2); _content_timeline = new wxButton (_content_panel, wxID_ANY, _("Timeline...")); - b->Add (_content_timeline, 1, wxEXPAND | wxLEFT | wxRIGHT); + b->Add (_content_timeline, 1, wxEXPAND | wxALL, 2); s->Add (b, 0, wxALL, 4); |
