mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
fixed focus
This commit is contained in:
parent
80ae2a7774
commit
cd0cdc28aa
@ -223,16 +223,20 @@ 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);
|
||||
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;
|
||||
}
|
||||
// Propagete focus up
|
||||
while (view != &root_container) {
|
||||
view->parent->focused = view;
|
||||
view = view->parent;
|
||||
}
|
||||
focus_view(view->parent);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user