mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 05:05:43 +01:00
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:
parent
6d84c56a25
commit
63b54649ba
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue