1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2025-03-31 17:35:52 -04:00

event: don't complain if an orphaned window's sibling isn't found

Orphaned windows aren't expected to have all of their siblings in the
tree, so this is normal. And we aren't going to move orphaned windows in
the stack anyway, so this is harmless.

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui 2024-09-13 16:23:54 +01:00
parent 3820c33519
commit 3899d2c4cd
No known key found for this signature in database
GPG key ID: D3A4405BE6CC17F4
3 changed files with 21 additions and 16 deletions

View file

@ -352,7 +352,6 @@ static inline void ev_create_notify(session_t *ps, xcb_create_notify_event_t *ev
/// Handle configure event of a regular window
static void configure_win(session_t *ps, xcb_configure_notify_event_t *ce) {
auto cursor = wm_find(ps->wm, ce->window);
auto below = wm_find(ps->wm, ce->above_sibling);
if (!cursor) {
if (wm_is_consistent(ps->wm)) {
@ -363,17 +362,7 @@ static void configure_win(session_t *ps, xcb_configure_notify_event_t *ce) {
return;
}
if (below == NULL && ce->above_sibling != XCB_NONE) {
log_error("Configure event received for window %#010x, but its sibling "
"window %#010x is not in our tree. Expect malfunction.",
ce->window, ce->above_sibling);
assert(false);
} else if (below != NULL) {
wm_stack_move_to_above(ps->wm, cursor, below);
} else {
// above_sibling being XCB_NONE means the window is put at the bottom.
wm_stack_move_to_end(ps->wm, cursor, true);
}
wm_stack_move_to_above(ps->wm, cursor, ce->above_sibling);
auto w = wm_ref_deref(cursor);
if (!w) {

View file

@ -266,16 +266,32 @@ void wm_refresh_leaders(struct wm *wm) {
}
}
/// Move window `w` so it's right above `below`, if `below` is 0, `w` is moved
/// Move window `w` so it's right above `below`, if `below` is XCB_NONE, `w` is moved
/// to the bottom of the stack
void wm_stack_move_to_above(struct wm *wm, struct wm_ref *cursor, struct wm_ref *below) {
void wm_stack_move_to_above(struct wm *wm, struct wm_ref *cursor, xcb_window_t below) {
BUG_ON_NULL(cursor);
auto node = to_tree_node_mut(cursor);
if (node->parent == &wm->orphan_root) {
// If this window is orphaned, moving it around its siblings is
// meaningless. Same below.
log_debug("Ignoring restack request for orphaned window %#010x", node->id.x);
return;
}
wm_tree_move_to_above(&wm->tree, node, to_tree_node_mut(below));
if (below == XCB_NONE) {
// `below` being XCB_NONE means the window is put at the bottom.
wm_tree_move_to_end(&wm->tree, node, /*to_bottom=*/true);
return;
}
auto below_node = wm_tree_find(&wm->tree, below);
if (below_node == NULL) {
log_error("Trying to restack window %#010x, but its sibling window "
"%#010x is not in our tree. Expect malfunction.",
node->id.x, below);
assert(false);
return;
}
wm_tree_move_to_above(&wm->tree, node, below_node);
}
void wm_stack_move_to_end(struct wm *wm, struct wm_ref *cursor, bool to_bottom) {

View file

@ -137,7 +137,7 @@ struct wm_ref *attr_pure wm_ref_bottommost_child(const struct wm_ref *cursor);
/// Move window `w` so it's right above `below`, if `below` is 0, `w` is moved
/// to the bottom of the stack
void wm_stack_move_to_above(struct wm *wm, struct wm_ref *cursor, struct wm_ref *below);
void wm_stack_move_to_above(struct wm *wm, struct wm_ref *cursor, xcb_window_t below);
/// Move window `w` to the top of the stack.
void wm_stack_move_to_end(struct wm *wm, struct wm_ref *cursor, bool to_bottom);