mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
put back
This commit is contained in:
parent
0eed6a4f99
commit
199ba05ef1
@ -38,7 +38,7 @@ swayc_t *focus_pointer(void) {
|
|||||||
if (pointer && focused != pointer) {
|
if (pointer && focused != pointer) {
|
||||||
unfocus_all(&root_container);
|
unfocus_all(&root_container);
|
||||||
focus_view(pointer);
|
focus_view(pointer);
|
||||||
} else if (!focused){
|
} else if (!focused) {
|
||||||
focus_view(active_workspace);
|
focus_view(active_workspace);
|
||||||
}
|
}
|
||||||
focused = pointer;
|
focused = pointer;
|
||||||
@ -137,14 +137,14 @@ static void handle_view_destroyed(wlc_handle handle) {
|
|||||||
wlc_view_set_state(handle, WLC_BIT_ACTIVATED, true);
|
wlc_view_set_state(handle, WLC_BIT_ACTIVATED, true);
|
||||||
sway_log(L_DEBUG,"Unmanaged window of type %x was destroyed", type);
|
sway_log(L_DEBUG,"Unmanaged window of type %x was destroyed", type);
|
||||||
if (type & WLC_BIT_UNMANAGED) {
|
if (type & WLC_BIT_UNMANAGED) {
|
||||||
focus_pointer();
|
focus_view(focus_pointer());
|
||||||
arrange_windows(active_workspace, -1, -1);
|
arrange_windows(active_workspace, -1, -1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (type & WLC_BIT_OVERRIDE_REDIRECT) {
|
if (type & WLC_BIT_OVERRIDE_REDIRECT) {
|
||||||
override_redirect = false;
|
override_redirect = false;
|
||||||
focus_pointer();
|
focus_view(focus_pointer());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (type & WLC_BIT_POPUP) {
|
if (type & WLC_BIT_POPUP) {
|
||||||
|
Loading…
Reference in New Issue
Block a user