create fake enter events for button press bindings. only swallow enter events when focus.undermouse is not on (for non-mouse actions)
This commit is contained in:
parent
8c265b5e33
commit
4307366b71
1 changed files with 3 additions and 2 deletions
|
@ -339,7 +339,7 @@ void actions_client_move(ObActionsData *data, gboolean start)
|
|||
else if (config_focus_follow &&
|
||||
data->context != OB_FRAME_CONTEXT_CLIENT)
|
||||
{
|
||||
if (data->button && config_focus_under_mouse) {
|
||||
if (data->uact == OB_USER_ACTION_MOUSE_PRESS) {
|
||||
struct _ObClient *c;
|
||||
|
||||
/* usually this is sorta redundant, but with a press action
|
||||
|
@ -353,7 +353,8 @@ void actions_client_move(ObActionsData *data, gboolean start)
|
|||
"mouse-event action");
|
||||
event_enter_client(c);
|
||||
}
|
||||
} else
|
||||
}
|
||||
else if (!data->button && !config_focus_under_mouse)
|
||||
event_end_ignore_all_enters(ignore_start);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue