13
0

Don't translate empty strings.

git-svn-id: svn://localhost/ardour2/branches/3.0@10725 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-11-21 14:33:54 +00:00
parent e3a0c3dfb7
commit fab9ec9d71

View File

@ -220,8 +220,8 @@ VisibilityGroup::list_view ()
Gtk::TreeView* v = Gtk::manage (new Gtk::TreeView (_model));
v->set_headers_visible (false);
v->append_column (_(""), _model_columns._visible);
v->append_column (_(""), _model_columns._name);
v->append_column ("", _model_columns._visible);
v->append_column ("", _model_columns._name);
Gtk::CellRendererToggle* visible_cell = dynamic_cast<Gtk::CellRendererToggle*> (v->get_column_cell_renderer (0));
visible_cell->property_activatable() = true;