don't focus docks when you click on them
This commit is contained in:
parent
151df8b317
commit
a6af2fc0b9
1 changed files with 6 additions and 2 deletions
|
@ -45,9 +45,13 @@ static gboolean run_func(ObActionsData *data, gpointer options)
|
|||
Options *o = options;
|
||||
|
||||
if (data->client) {
|
||||
ob_debug("button %d focusable %d context %d %d %d\n",
|
||||
data->button, client_mouse_focusable(data->client),
|
||||
data->context,
|
||||
OB_FRAME_CONTEXT_CLIENT, OB_FRAME_CONTEXT_FRAME);
|
||||
if (data->button == 0 || client_mouse_focusable(data->client) ||
|
||||
data->context != OB_FRAME_CONTEXT_CLIENT ||
|
||||
data->context != OB_FRAME_CONTEXT_FRAME)
|
||||
(data->context != OB_FRAME_CONTEXT_CLIENT &&
|
||||
data->context != OB_FRAME_CONTEXT_FRAME))
|
||||
{
|
||||
client_activate(data->client, o->here, FALSE, FALSE, TRUE);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue