From 0521b4331098f5b76e96f1b8a7db677357d29d71 Mon Sep 17 00:00:00 2001 From: Alex Wu Date: Tue, 28 Aug 2012 12:19:14 +0000 Subject: [PATCH] edje: backward-compatible to "BLOCK_HANDLE" select_mode. From: Alex Wu SVN revision: 75783 --- legacy/edje/src/bin/edje_cc_handlers.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legacy/edje/src/bin/edje_cc_handlers.c b/legacy/edje/src/bin/edje_cc_handlers.c index eb91ed4320..a057416334 100644 --- a/legacy/edje/src/bin/edje_cc_handlers.c +++ b/legacy/edje/src/bin/edje_cc_handlers.c @@ -3617,6 +3617,7 @@ st_collections_group_parts_part_entry_mode(void) @li EXPLICIT mode requires the application controlling the edje object has to explicitly begin and end selection modes, and the selection itself is dragable at both ends. + @li BLOCK_HANDLE mode is the same as DEFAULT, it is for backward-compatibility. @endproperty */ static void @@ -3627,6 +3628,7 @@ st_collections_group_parts_part_select_mode(void) current_part->select_mode = parse_enum(0, "DEFAULT", EDJE_ENTRY_SELECTION_MODE_DEFAULT, "EXPLICIT", EDJE_ENTRY_SELECTION_MODE_EXPLICIT, + "BLOCK_HANDLE", EDJE_ENTRY_SELECTION_MODE_DEFAULT, NULL); }