2013-02-17 Cedric Bail
* Improve support for some 64bits system.
+
+2013-02-17 Mike Blumenkrantz
+
+ * ignore tab key widget focus change if control/alt is pressed
* Fix the scroll position is calculated by the size of pan object, not the size of scroller.
* Fix a elm_transit crash issue when user delete all target objects in the effect end callback.
* elm_entry_single_line_set should not change cnp_mode when PLAINTEXT mode.
+ * ignore tab key widget focus change if control/alt is pressed
Elementary 1.7.5
if ((!strcmp(ev->keyname, "Tab")) ||
(!strcmp(ev->keyname, "ISO_Left_Tab")))
{
+ if (evas_key_modifier_is_set(ev->modifiers, "Control") ||
+ evas_key_modifier_is_set(ev->modifiers, "Alt"))
+ return EINA_FALSE;
if (evas_key_modifier_is_set(ev->modifiers, "Shift"))
elm_widget_focus_cycle(obj, ELM_FOCUS_PREVIOUS);
else