summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-05 20:08:19 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-05 20:08:19 +0000
commit640f77662918211f3990b2d3481c60aaf1125d18 (patch)
tree8c1cb3d1061323896403651632dc657ffa774198 /src
parentabc22146d271030b911cb158ea3d1f1544d6f3de (diff)
Couple of small layout tweaks.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index d2caa0dea..b9a4012e3 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -104,7 +104,7 @@ FilmEditor::make_film_panel ()
add_label_to_grid_bag_sizer (grid, _film_panel, _("Name"), wxGBPosition (r, 0));
_name = new wxTextCtrl (_film_panel, wxID_ANY);
- grid->Add (_name, wxGBPosition(r, 1));
+ grid->Add (_name, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
++r;
add_label_to_grid_bag_sizer (grid, _film_panel, _("DCP Name"), wxGBPosition (r, 0));
@@ -149,7 +149,7 @@ FilmEditor::make_film_panel ()
}
++r;
- _frame_rate_description = new wxStaticText (_film_panel, wxID_ANY, wxT (""), wxDefaultPosition, wxDefaultSize);
+ _frame_rate_description = new wxStaticText (_film_panel, wxID_ANY, wxT (" \n "), wxDefaultPosition, wxDefaultSize);
grid->Add (video_control (_frame_rate_description), wxGBPosition (r, 0), wxGBSpan (1, 2), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
wxFont font = _frame_rate_description->GetFont();
font.SetStyle(wxFONTSTYLE_ITALIC);