Remove unnesecary files/comments

This commit is contained in:
2025-10-02 15:25:16 +01:00
parent 4e10cf7338
commit d81fe8b7c6
2 changed files with 0 additions and 53 deletions

View File

@@ -361,8 +361,6 @@ Event wait_for_event(void) {
ret.y = e->y;
ret.width = e->width;
ret.height = e->height;
// ret.stack_mode =
// e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE ? e->stack_mode : 0;
} break;
case XCB_RESIZE_REQUEST: {
@@ -372,17 +370,6 @@ Event wait_for_event(void) {
ret.width = e->width;
ret.height = e->height;
} break;
// case XCB_CONFIGURE_NOTIFY: {
// xcb_configure_notify_event_t *e;
// e = (xcb_configure_notify_event_t *)ev;
// ret.type = 12;
// ret.window = e->window;
// ret.width = e->width;
// ret.height = e->height;
// ret.x = e->x;
// ret.y = e->y;
// } break;
}
xcb_flush(conn);