fixed focus

This commit is contained in:
taiyu 2015-08-15 08:27:51 -07:00
parent 80ae2a7774
commit cd0cdc28aa

View File

@ -223,16 +223,20 @@ void unfocus_all(swayc_t *container) {
} }
void focus_view(swayc_t *view) { void focus_view(swayc_t *view) {
sway_log(L_DEBUG, "Setting focus to %p", view); sway_log(L_DEBUG, "Setting focus for %p", view);
if (view->type == C_VIEW) { if (view == &root_container) {
wlc_view_set_state(view->handle, WLC_BIT_ACTIVATED, true); // Propegate wayland focus down
wlc_view_bring_to_front(view->handle); swayc_t *child = view->focused;
wlc_view_focus(view->handle); while (child && child->type != C_VIEW) {
} child = child->focused;
// Propagete focus up }
while (view != &root_container) { if (child) {
view->parent->focused = view; wlc_view_set_state(child->handle, WLC_BIT_ACTIVATED, true);
view = view->parent; wlc_view_focus(child->handle);
}
return;
} }
view->parent->focused = view;
focus_view(view->parent);
} }