summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwoochan lee <wc0917.lee@samsung.com>2015-11-23 07:48:32 +0100
committerCedric BAIL <cedric@osg.samsung.com>2015-11-23 08:45:33 +0100
commitf863d98c6083958438498873a542a59a4be0ec54 (patch)
treecec254975abf694642691ca651e2a48ccd41b2a0
parentedc6b3205298d5542fc045c9be615552923d624c (diff)
downloadelementary-f863d98c6083958438498873a542a59a4be0ec54.tar.gz
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>
-rw-r--r--src/lib/elc_multibuttonentry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elc_multibuttonentry.c b/src/lib/elc_multibuttonentry.c
index 3b4a2dbb9..bd2bbc4e4 100644
--- a/src/lib/elc_multibuttonentry.c
+++ b/src/lib/elc_multibuttonentry.c
@@ -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);
}