aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaiyu <taiyu.len@gmail.com>2015-08-15 08:34:09 -0700
committertaiyu <taiyu.len@gmail.com>2015-08-15 08:34:09 -0700
commitf3a970e24e45ede4671217b4508268dec2314b20 (patch)
treea1ac021068764e9c876a04f5c350fb44037a9129
parentcd0cdc28aa6578d0a8fb0a27c5dd07052320e734 (diff)
fixed focus
-rw-r--r--sway/layout.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/sway/layout.c b/sway/layout.c
index 66cbde99..e2e91593 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -223,20 +223,17 @@ void unfocus_all(swayc_t *container) {
}
void focus_view(swayc_t *view) {
- sway_log(L_DEBUG, "Setting focus for %p", view);
- if (view == &root_container) {
- // Propegate wayland focus down
- swayc_t *child = view->focused;
- while (child && child->type != C_VIEW) {
- child = child->focused;
- }
- if (child) {
- wlc_view_set_state(child->handle, WLC_BIT_ACTIVATED, true);
- wlc_view_focus(child->handle);
- }
- return;
+ 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);
}
- view->parent->focused = view;
- focus_view(view->parent);
}