13
0

MCP: space for %

git-svn-id: svn://localhost/ardour2/branches/3.0@12011 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-04-18 17:03:21 +00:00
parent 3cc358bc87
commit 028727e85c

View File

@ -640,7 +640,7 @@ Strip::do_parameter_display (AutomationType type, float val)
case PanWidthAutomation:
if (_route) {
char buf[16];
snprintf (buf, sizeof (buf), "%6ld%%", lrintf (val * 100.0));
snprintf (buf, sizeof (buf), "%5ld%%", lrintf (val * 100.0));
_surface->write (display (1, buf));
}
break;