diff options
author | Carsten Haitzler <raster@rasterman.com> | 2012-03-06 12:05:00 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2012-03-06 12:05:00 +0000 |
commit | cb3dfebc8db94aed4ff8d0483afcdd0cb6ac7748 (patch) | |
tree | 162725aabbcfb684ed4bbe3bba5e37dfddf3e132 /src/modules/datetime_input_ctxpopup | |
parent | b6d77414d15940b67a9782388c8666f3877092d6 (diff) |
missed 1 config fetcher func.
SVN revision: 68811
Diffstat (limited to 'src/modules/datetime_input_ctxpopup')
-rw-r--r-- | src/modules/datetime_input_ctxpopup/datetime_input_ctxpopup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/datetime_input_ctxpopup/datetime_input_ctxpopup.c b/src/modules/datetime_input_ctxpopup/datetime_input_ctxpopup.c index 485d0f563..00d7f77e6 100644 --- a/src/modules/datetime_input_ctxpopup/datetime_input_ctxpopup.c +++ b/src/modules/datetime_input_ctxpopup/datetime_input_ctxpopup.c | |||
@@ -196,7 +196,7 @@ _field_clicked_cb(void *data, Evas_Object *obj, void *event_info __UNUSED__) | |||
196 | evas_object_geometry_get(obj, &x, &y, &w, &h); | 196 | evas_object_geometry_get(obj, &x, &y, &w, &h); |
197 | evas_object_geometry_get(elm_widget_top_get(ctx_mod->mod_data.base), NULL, NULL, &width, NULL); | 197 | evas_object_geometry_get(elm_widget_top_get(ctx_mod->mod_data.base), NULL, NULL, &width, NULL); |
198 | evas_object_size_hint_min_set(ctx_mod->ctxpopup, width, -1); | 198 | evas_object_size_hint_min_set(ctx_mod->ctxpopup, width, -1); |
199 | display_item_num = width / (w + elm_finger_size_get()); | 199 | display_item_num = width / (w + elm_config_finger_size_get()); |
200 | // always display even number of items to avoid autoselection | 200 | // always display even number of items to avoid autoselection |
201 | if (display_item_num % 2) display_item_num -= 1; | 201 | if (display_item_num % 2) display_item_num -= 1; |
202 | if (display_item_num < DISKSELECTOR_MIN_ITEMS) | 202 | if (display_item_num < DISKSELECTOR_MIN_ITEMS) |