X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions.c;h=a236b581d60359328f645f4fe1a3765be4f258a4;hb=4307366b713aaf1a5787dbb3244a5717db1330e8;hp=b7f5dc2bc710efcfffc776e5519f92dc5b4eca50;hpb=8c265b5e3351a946af37f972e66de50a419314d9;p=chaz%2Fopenbox diff --git a/openbox/actions.c b/openbox/actions.c index b7f5dc2b..a236b581 100644 --- a/openbox/actions.c +++ b/openbox/actions.c @@ -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); } }