client signal actions are not mouse actions

mouse actions have a different end path which causes pointer popping to not occur

T913
This commit is contained in:
Mike Blumenkrantz 2014-02-12 12:06:13 -05:00
parent 1f534c3b32
commit 0d2945149a
1 changed files with 0 additions and 22 deletions

View File

@ -4167,17 +4167,6 @@ e_client_signal_move_begin(E_Client *ec, const char *sig, const char *src EINA_U
e_pointer_mode_push(ec, E_POINTER_MOVE);
e_zone_edge_disable();
_e_client_moveinfo_gather(ec, sig);
if (ec->cur_mouse_action)
{
if ((!ec->cur_mouse_action->func.end_mouse) &&
(!ec->cur_mouse_action->func.end))
ec->cur_mouse_action = NULL;
else
e_object_unref(E_OBJECT(ec->cur_mouse_action));
}
ec->cur_mouse_action = e_action_find("window_move");
if (ec->cur_mouse_action)
e_object_ref(E_OBJECT(ec->cur_mouse_action));
}
EAPI void
@ -4237,17 +4226,6 @@ e_client_signal_resize_begin(E_Client *ec, const char *dir, const char *sig, con
if (!e_client_resize_begin(ec))
return;
e_pointer_mode_push(ec, ec->resize_mode);
if (ec->cur_mouse_action)
{
if ((!ec->cur_mouse_action->func.end_mouse) &&
(!ec->cur_mouse_action->func.end))
ec->cur_mouse_action = NULL;
else
e_object_unref(E_OBJECT(ec->cur_mouse_action));
}
ec->cur_mouse_action = e_action_find("window_resize");
if (ec->cur_mouse_action)
e_object_ref(E_OBJECT(ec->cur_mouse_action));
}
EAPI void