multibuttonentry: change default format count.

Summary:
There is no need ellipsis, space as well before "%d".
The "%d" will show the actual invisible item count.

@fix

Reviewers: jaehwan, Hermet, cedric

Reviewed By: cedric

Differential Revision: https://phab.enlightenment.org/D3332

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
woochan lee 2015-11-23 07:48:32 +01:00 committed by Cedric BAIL
parent 74626eafd2
commit bccb4efe1c
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ _format_count(int count, void *data EINA_UNUSED)
{
char buf[32];
if (!snprintf(buf, sizeof(buf), "... + %d", count)) return NULL;
if (!snprintf(buf, sizeof(buf), "+%d", count)) return NULL;
return strdup(buf);
}