summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-16 22:08:46 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-16 22:08:46 +0100
commit89af81886eeee57861bc23984a0583bec76d536d (patch)
tree908217c59461578eceb54500e6ed33ba8aed89a0 /src
parent4d794a8e6a492c2983b4d5b8376b114b170f41e5 (diff)
Fix expansion of colour conversion name.
Diffstat (limited to 'src')
-rw-r--r--src/wx/colour_conversion_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/colour_conversion_dialog.cc b/src/wx/colour_conversion_dialog.cc
index 976d295d5..1a8008bfd 100644
--- a/src/wx/colour_conversion_dialog.cc
+++ b/src/wx/colour_conversion_dialog.cc
@@ -43,7 +43,7 @@ ColourConversionDialog::ColourConversionDialog (wxWindow* parent, shared_ptr<Col
add_label_to_grid_bag_sizer (table, this, _("Name"), true, wxGBPosition (r, 0));
_name = new wxTextCtrl (this, wxID_ANY, wxT (""));
- table->Add (_name, wxGBPosition (r, 1));
+ table->Add (_name, wxGBPosition (r, 1), wxDefaultSpan, wxEXPAND);
++r;
add_label_to_grid_bag_sizer (table, this, _("Input gamma"), true, wxGBPosition (r, 0));