missed 1 config fetcher func.
authorCarsten Haitzler <raster@rasterman.com>
Tue, 6 Mar 2012 12:05:00 +0000 (12:05 +0000)
committerCarsten Haitzler <raster@rasterman.com>
Tue, 6 Mar 2012 12:05:00 +0000 (12:05 +0000)
SVN revision: 68811

src/modules/datetime_input_ctxpopup/datetime_input_ctxpopup.c

index 485d0f5..00d7f77 100644 (file)
@@ -196,7 +196,7 @@ _field_clicked_cb(void *data, Evas_Object *obj, void *event_info __UNUSED__)
    evas_object_geometry_get(obj, &x, &y, &w, &h);
    evas_object_geometry_get(elm_widget_top_get(ctx_mod->mod_data.base), NULL, NULL, &width, NULL);
    evas_object_size_hint_min_set(ctx_mod->ctxpopup, width, -1);
-   display_item_num = width / (w + elm_finger_size_get());
+   display_item_num = width / (w + elm_config_finger_size_get());
    // always display even number of items to avoid autoselection
    if (display_item_num % 2) display_item_num -= 1;
    if (display_item_num < DISKSELECTOR_MIN_ITEMS)