fix punch labels in time info box

git-svn-id: svn://localhost/ardour2/branches/3.0@9686 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-06-07 23:09:45 +00:00
parent a56555e8b2
commit f90fed2360

View file

@ -108,11 +108,11 @@ TimeInfoBox::TimeInfoBox ()
attach (punch_title, 2, 4, 0, 1);
l = manage (new Label);
l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("Start")));
l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("In")));
attach (*l, 2, 3, 1, 2);
attach (*punch_start, 3, 4, 1, 2);
l = manage (new Label);
l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("End")));
l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("Out")));
attach (*l, 2, 3, 2, 3);
attach (*punch_end, 3, 4, 2, 3);