delete client raise timer when beginning a move/resize operation

this breaks things in subtle ways
This commit is contained in:
Mike Blumenkrantz 2017-06-09 20:18:20 -04:00
parent ba9c8ab2c1
commit 2393e6aeed
1 changed files with 2 additions and 0 deletions

View File

@ -791,6 +791,7 @@ _e_client_move_begin(E_Client *ec)
_e_client_action_input_win_del();
return 0;
}
E_FREE_FUNC(ec->raise_timer, ecore_timer_del);
return 1;
}
@ -4790,6 +4791,7 @@ e_client_resize_begin(E_Client *ec)
_e_client_action_input_win_del();
return EINA_FALSE;
}
E_FREE_FUNC(ec->raise_timer, ecore_timer_del);
return EINA_TRUE;
error:
ec->resize_mode = E_POINTER_RESIZE_NONE;