From a4e27b8ddbd4dfa99f40df205b51bfe393ca3ced Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 7 Dec 2021 22:28:10 +0100 Subject: [PATCH] Use less vertical height for name format hints. --- src/wx/name_format_editor.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)); -- 2.30.2