flipselector.edc: array size +1 to prevent loosing last character.

Summary:
Flipselector lose last character when 50 characters showing case.

This defined value will using in snprintf, fetch_str(_edje_embryo_fn_fetch_str).
As you already know, we have to give the location in array for '\n'.

Test Plan: Give the 50 characters for flipselector text.

Reviewers: Hermet, cedric

Reviewed By: cedric

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

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Woochan Lee 2015-09-22 01:51:08 +02:00 committed by Cedric BAIL
parent 59a14b4a81
commit 8fa0d0059b
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#define FLIP_PICKER_MAX_LEN (50)
#define FLIP_PICKER_MAX_LEN (50 + 1)
#define FLIP_PICKER_MAX_LEN_STR "50"
group { name: "elm/flipselector/base/default";