projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49b848a
)
when looking for the focus target, search for modal children in the entire transient...
author
Dana Jansens
<danakj@orodu.net>
Fri, 26 Sep 2003 19:05:06 +0000
(19:05 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Fri, 26 Sep 2003 19:05:06 +0000
(19:05 +0000)
openbox/client.c
patch
|
blob
|
history
diff --git
a/openbox/client.c
b/openbox/client.c
index bc218af071f2df049e9193c77c7bdd2ae8ae8546..c7d03a826fa61c28e8bbd9452178586b4df69cf5 100644
(file)
--- a/
openbox/client.c
+++ b/
openbox/client.c
@@
-2492,7
+2492,7
@@
ObClient *client_focus_target(ObClient *self)
ObClient *child;
/* if we have a modal child, then focus it, not us */
- child = client_search_modal_child(
self
);
+ child = client_search_modal_child(
client_search_top_transient(self)
);
if (child) return child;
return self;
}