diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-08-17 22:25:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-08-17 22:25:41 +0100 |
| commit | 0f006dcb1466e9dcf183689abe6cfc089f389c65 (patch) | |
| tree | f99b8ec2e40ecae1e8daa87a666b29f1a3b1296a /src | |
| parent | 5f64a83b76dd015cc03d106061bf890d3d80d788 (diff) | |
Layout adjustment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/preset_colour_conversion_dialog.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/preset_colour_conversion_dialog.cc b/src/wx/preset_colour_conversion_dialog.cc index e7f8cf049..ce6897ecd 100644 --- a/src/wx/preset_colour_conversion_dialog.cc +++ b/src/wx/preset_colour_conversion_dialog.cc @@ -34,9 +34,10 @@ PresetColourConversionDialog::PresetColourConversionDialog (wxWindow* parent) SetSizer (overall_sizer); wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); + table->AddGrowableCol (1, 1); add_label_to_sizer (table, this, _("Name"), true); _name = new wxTextCtrl (this, wxID_ANY, wxT ("")); - table->Add (_name); + table->Add (_name, 1, wxEXPAND | wxALL); overall_sizer->Add (table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER); overall_sizer->Add (new wxStaticLine (this, wxID_ANY), 0, wxEXPAND); |
