Ellipsize source names in the region property dialogue box.

git-svn-id: svn://localhost/ardour2/branches/3.0@7930 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-10-27 21:56:04 +00:00
parent d75239caea
commit 04585abae3
1 changed files with 3 additions and 0 deletions

View File

@ -157,6 +157,9 @@ RegionEditor::RegionEditor (Session* s, boost::shared_ptr<Region> r)
}
_sources.set_headers_visible (false);
Gtk::CellRendererText* t = dynamic_cast<Gtk::CellRendererText*> (_sources.get_column_cell_renderer(0));
assert (t);
t->property_ellipsize() = Pango::ELLIPSIZE_END;
show_all();