summaryrefslogtreecommitdiff
path: root/src/wx/name_format_editor.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-03-03 19:55:41 +0000
committerCarl Hetherington <cth@carlh.net>2017-03-03 19:55:41 +0000
commite4d7f575fab50b6d255821d6d6a8171c8e1f13f6 (patch)
tree49f603a388e8a8ca3107e6106e13dcdb3fbdbc93 /src/wx/name_format_editor.cc
parentccc8409dceedcf71872b2846b9b4a4dea9042bda (diff)
Add options to write KDMs to separate directories / ZIP files.
Diffstat (limited to 'src/wx/name_format_editor.cc')
-rw-r--r--src/wx/name_format_editor.cc8
1 files changed, 7 insertions, 1 deletions
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)));