diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-04-12 17:23:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-04-12 17:23:50 +0100 |
| commit | 2e27d014c584ac5348feca9c2d21b036fba437c0 (patch) | |
| tree | c546f27955e667ba4c86895246cf15ee470a2510 /src | |
| parent | 1f9c2f2699718da6f3f16ab7aa00b41789ec180a (diff) | |
Hand-apply 1b68e4de5260a08e7f06a1b802cfc7eb41cd4be8 from master.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/video_panel.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index cdd2eb5de..67c369de2 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -262,10 +262,13 @@ VideoPanel::film_content_changed (int property) } } else if (property == FFmpegContentProperty::FILTERS) { if (fcs) { - string const p = Filter::ffmpeg_string (fcs->filters ()); + string p = Filter::ffmpeg_string (fcs->filters ()); if (p.empty ()) { _filters->SetLabel (_("None")); } else { + if (p.length() > 25) { + p = p.substr (0, 25) + "..."; + } _filters->SetLabel (std_to_wx (p)); } } |
