From 05e15b81392cfe2307fbbb5a9280a25ee7299776 Mon Sep 17 00:00:00 2001 From: Jung Chanwook Date: Tue, 23 Jul 2013 16:41:05 +0900 Subject: [PATCH] [Datetime] Change the input panel layout to DATETIME mode Change-Id: I4d357a913c0aaf4428a428b8e1ae929cc990147e --- src/modules/datetime_input_popup/datetime_input_popup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/datetime_input_popup/datetime_input_popup.c b/src/modules/datetime_input_popup/datetime_input_popup.c index cc549bd..83055ec 100644 --- a/src/modules/datetime_input_popup/datetime_input_popup.c +++ b/src/modules/datetime_input_popup/datetime_input_popup.c @@ -535,7 +535,7 @@ _set_datepicker_entry_filter(Popup_Module_Data *popup_mod) if (idx == ELM_DATETIME_MONTH) elm_entry_input_panel_layout_set(entry, ELM_INPUT_PANEL_LAYOUT_MONTH); else - elm_entry_input_panel_layout_set(entry, ELM_INPUT_PANEL_LAYOUT_NUMBERONLY); + elm_entry_input_panel_layout_set(entry, ELM_INPUT_PANEL_LAYOUT_DATETIME); if (idx == ELM_DATETIME_YEAR) limit_filter_data.max_char_count = 4; @@ -584,7 +584,7 @@ _set_timepicker_entry_filter(Popup_Module_Data *popup_mod) elm_object_style_set(entry, buf); elm_entry_magnifier_disabled_set(entry, EINA_TRUE); elm_entry_context_menu_disabled_set(entry, EINA_TRUE); - elm_entry_input_panel_layout_set(entry, ELM_INPUT_PANEL_LAYOUT_NUMBERONLY); + elm_entry_input_panel_layout_set(entry, ELM_INPUT_PANEL_LAYOUT_DATETIME); elm_entry_markup_filter_append(entry, elm_entry_filter_accept_set, &digits_filter_data); limit_filter_data.max_char_count = 2; -- 2.7.4