Fix record-safe column

This commit is contained in:
Robin Gareus 2022-09-13 04:50:22 +02:00
parent 4419992bb7
commit f4984966c2
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -175,7 +175,7 @@ void
RouteListBase::append_col_rec_safe ()
{
CellRendererPixbufMulti* cell;
cell = append_cell (S_("Rec|R"), _("Record enabled"), _columns.rec_safe, _columns.is_track, sigc::mem_fun (*this, &RouteListBase::on_tv_rec_safe_toggled));
cell = append_cell (S_("Rec|RS"), _("Record Safe"), _columns.rec_safe, _columns.is_track, sigc::mem_fun (*this, &RouteListBase::on_tv_rec_safe_toggled));
cell->set_pixbuf (0, ::get_icon ("rec-safe-disabled"));
cell->set_pixbuf (1, ::get_icon ("rec-safe-enabled"));
}