From 04585abae320f28f3f9f790efabaf4d255b651a4 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 27 Oct 2010 21:56:04 +0000 Subject: [PATCH] Ellipsize source names in the region property dialogue box. git-svn-id: svn://localhost/ardour2/branches/3.0@7930 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/region_editor.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk2_ardour/region_editor.cc b/gtk2_ardour/region_editor.cc index 38f497527e..0d3f89dfad 100755 --- a/gtk2_ardour/region_editor.cc +++ b/gtk2_ardour/region_editor.cc @@ -157,6 +157,9 @@ RegionEditor::RegionEditor (Session* s, boost::shared_ptr r) } _sources.set_headers_visible (false); + Gtk::CellRendererText* t = dynamic_cast (_sources.get_column_cell_renderer(0)); + assert (t); + t->property_ellipsize() = Pango::ELLIPSIZE_END; show_all();