X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fname_format_editor.h;h=71295807fda83b7be874448e172494f32b02d1a5;hp=0f46821274a092c8b40468da581dc0b8000a0f6c;hb=49fc9b8c4282d0e973ac1f4e31357735cf6be218;hpb=f4964573a60155545e02cbbebc47199f7480cf14 diff --git a/src/wx/name_format_editor.h b/src/wx/name_format_editor.h index 0f4682127..71295807f 100644 --- a/src/wx/name_format_editor.h +++ b/src/wx/name_format_editor.h @@ -83,7 +83,7 @@ private: wxString example = wxString::Format (_("e.g. %s"), _name.get (_examples)); wxString wrapped; for (size_t i = 0; i < example.Length(); ++i) { - if (i > 0 && (i % 30) == 0) { + if (i > 0 && (i % 40) == 0) { wrapped += "\n"; } wrapped += example[i];