summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-12-07 22:28:10 +0100
committerCarl Hetherington <cth@carlh.net>2022-01-18 22:37:07 +0100
commita4e27b8ddbd4dfa99f40df205b51bfe393ca3ced (patch)
tree09df80206f1c36ee1016bffcb2c04aa24caba87e
parentbfcfda264d12e42facce6f59e7cada9574ca7f2e (diff)
Use less vertical height for name format hints.
-rw-r--r--src/wx/name_format_editor.cc4
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));