diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-05 16:16:26 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-05 16:16:26 +0000 |
| commit | b5e597f1b3a810610fd63f50c55dc5a8b715744e (patch) | |
| tree | 133d9e1f30a99eb95b6064d7a7fd734bd3439cc6 /openbox/focus.c | |
| parent | 99daa7f5237b220b93bbec4854344d76cde3ef84 (diff) | |
lots of fixes for the iconify animation. i think it should all work perfectly now ?
one change in action.c may affect bindings... THIS COULD BREAK CURRENT CONFIG FILES. ya.
so, if you used a press binding and it moved the window, no enter event will be generated for that anymore because you are holding down the button when the window moves. if you don't like that then use a click binding instead.
1
Diffstat (limited to 'openbox/focus.c')
| -rw-r--r-- | openbox/focus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/focus.c b/openbox/focus.c index 823435c9..94257205 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -499,7 +499,7 @@ static gboolean valid_focus_target(ObClient *ft, gboolean dock_windows) for (it = ft->transients; it; it = g_slist_next(it)) { ObClient *c = it->data; - if (c->frame->visible) + if (frame_visible(c->frame)) return FALSE; } return TRUE; |
