summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-04-12 17:23:50 +0100
committerCarl Hetherington <cth@carlh.net>2015-04-12 17:23:50 +0100
commit2e27d014c584ac5348feca9c2d21b036fba437c0 (patch)
treec546f27955e667ba4c86895246cf15ee470a2510 /src
parent1f9c2f2699718da6f3f16ab7aa00b41789ec180a (diff)
Hand-apply 1b68e4de5260a08e7f06a1b802cfc7eb41cd4be8 from master.
Diffstat (limited to 'src')
-rw-r--r--src/wx/video_panel.cc5
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));
}
}