diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-07 22:28:10 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-18 22:30:36 +0100 |
| commit | 60778569edc3a6efd5244e3d505623b35887502c (patch) | |
| tree | 4641147c4d51cf3228ab9a672571a04fc2508127 | |
| parent | 0063136a20a2a85ec38c415e4c41377f7342690f (diff) | |
Use less vertical height for name format hints.
| -rw-r--r-- | src/wx/name_format_editor.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wx/name_format_editor.cc b/src/wx/name_format_editor.cc index b2c11b50c..5460b2f22 100644 --- a/src/wx/name_format_editor.cc +++ b/src/wx/name_format_editor.cc @@ -43,15 +43,17 @@ NameFormatEditor::NameFormatEditor (wxWindow* parent, dcp::NameFormat name, dcp: } _panel->SetSizer (_sizer); + auto titles_sizer = new wxFlexGridSizer (2); for (auto const& i: titles) { auto t = new StaticText (_panel, std_to_wx (String::compose ("%%%1 %2", i.first, i.second))); - _sizer->Add (t); + titles_sizer->Add (t); auto font = t->GetFont(); font.SetStyle (wxFONTSTYLE_ITALIC); font.SetPointSize (font.GetPointSize() - 1); t->SetFont (font); t->SetForegroundColour (wxColour (0, 0, 204)); } + _sizer->Add (titles_sizer); _specification->SetValue (std_to_wx (_name.specification())); _specification->Bind (wxEVT_TEXT, boost::bind(&NameFormatEditor::changed, this)); |
