make view save message use n+1, to count from 1 not zero

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3323 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-05-06 13:29:18 +00:00
parent 6d84c56a25
commit 63b54649ba

View file

@ -5964,7 +5964,7 @@ Editor::end_visual_state_op (uint32_t n)
PopUp* pup = new PopUp (WIN_POS_MOUSE, 1000, true);
char buf[32];
snprintf (buf, sizeof (buf), _("Saved view %u"), n);
snprintf (buf, sizeof (buf), _("Saved view %u"), n+1);
pup->set_text (buf);
pup->touch();