mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 23:46:20 +01:00
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:
parent
e3a0c3dfb7
commit
fab9ec9d71
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue