From e4d7f575fab50b6d255821d6d6a8171c8e1f13f6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 3 Mar 2017 19:55:41 +0000 Subject: Add options to write KDMs to separate directories / ZIP files. --- src/wx/name_format_editor.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/wx/name_format_editor.cc') diff --git a/src/wx/name_format_editor.cc b/src/wx/name_format_editor.cc index 1f7ca109b..82adc3f55 100644 --- a/src/wx/name_format_editor.cc +++ b/src/wx/name_format_editor.cc @@ -34,7 +34,9 @@ NameFormatEditor::NameFormatEditor (wxWindow* parent, dcp::NameFormat name, dcp: , _suffix (suffix) { _sizer->Add (_specification, 0, wxEXPAND, DCPOMATIC_SIZER_Y_GAP); - _sizer->Add (_example, 0, wxBOTTOM, DCPOMATIC_SIZER_Y_GAP); + if (!_examples.empty ()) { + _sizer->Add (_example, 0, wxBOTTOM, DCPOMATIC_SIZER_Y_GAP); + } _panel->SetSizer (_sizer); for (dcp::NameFormat::Map::const_iterator i = titles.begin(); i != titles.end(); ++i) { @@ -63,6 +65,10 @@ NameFormatEditor::changed () void NameFormatEditor::update_example () { + if (_examples.empty ()) { + return; + } + _name.set_specification (careful_string_filter (wx_to_std (_specification->GetValue ()))); wxString example = wxString::Format (_("e.g. %s"), std_to_wx (_name.get (_examples, _suffix))); -- cgit v1.2.3