Use less vertical height for name format hints.
authorCarl Hetherington <cth@carlh.net>
Tue, 7 Dec 2021 21:28:10 +0000 (22:28 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 18 Jan 2022 21:37:07 +0000 (22:37 +0100)
src/wx/name_format_editor.cc

index b2c11b50c8ad385a12fd1b2efd364e3b2a1728f2..5460b2f22625872472c6f6340fbee9fd8a370bc9 100644 (file)
@@ -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));