aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-15 11:37:20 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-15 11:37:20 -0400
commitf7f739c0576b4cf2fe9e5748fcdf861c0d970523 (patch)
treea1ac021068764e9c876a04f5c350fb44037a9129 /sway
parent5a8f464bc199f94a0a2ee848d249fe9d57b539c6 (diff)
parentf3a970e24e45ede4671217b4508268dec2314b20 (diff)
downloadsway-f7f739c0576b4cf2fe9e5748fcdf861c0d970523.tar.xz
Merge pull request #29 from taiyu-len/master
fixed focus
Diffstat (limited to 'sway')
-rw-r--r--sway/layout.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/sway/layout.c b/sway/layout.c
index 8b9315b4..e2e91593 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -223,16 +223,17 @@ void unfocus_all(swayc_t *container) {
}
void focus_view(swayc_t *view) {
- sway_log(L_DEBUG, "Setting focus to %p", view);
- if (view->type == C_VIEW) {
- wlc_view_set_state(view->handle, WLC_BIT_ACTIVATED, true);
- wlc_view_bring_to_front(view->handle);
- wlc_view_focus(view->handle);
- }
- // Propagete focus up
+ sway_log(L_DEBUG, "Setting focus for %p", view);
while (view != &root_container) {
view->parent->focused = view;
view = view->parent;
}
+ while (view && view->type != C_VIEW) {
+ view = view->focused;
+ }
+ if (view) {
+ wlc_view_set_state(view->handle, WLC_BIT_ACTIVATED, true);
+ wlc_view_focus(view->handle);
+ }
}