fix if action's "focused"
This commit is contained in:
parent
632557004c
commit
5dfd838778
1 changed files with 2 additions and 2 deletions
|
@ -128,8 +128,8 @@ static gboolean run_func(ObActionsData *data, gpointer options)
|
|||
(!o->maxvert_off || (c && !c->max_vert)) &&
|
||||
(!o->maxfull_on || (c && c->max_vert && c->max_horz)) &&
|
||||
(!o->maxfull_off || (c && !(c->max_vert && c->max_horz))) &&
|
||||
(!o->focused || (c && !(c == focus_client))) &&
|
||||
(!o->unfocused || (c && !(c != focus_client))))
|
||||
(!o->focused || (c && (c == focus_client))) &&
|
||||
(!o->unfocused || (c && !(c == focus_client))))
|
||||
{
|
||||
acts = o->thenacts;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue