bugfix: unneeded render on map request
Patch status: merged
Patch by Tony Crisci
Long description:
manage_window() will call tree_render() when appropriate, so pushing changes to X here is not needed.
To apply this patch, use:
curl http://cr.i3wm.org/patch/582/raw.patch | git am
b/src/handlers.c
| 15 |
@@ -282,7 +282,6 @@ static void handle_map_request(xcb_map_request_event_t *event) {
|
| 16 |
add_ignore_event(event->sequence, -1); |
| 17 |
|
| 18 |
manage_window(event->window, cookie, false); |
| 19 |
- x_push_changes(croot); |
| 20 |
return; |
| 21 |
} |
| 22 |
|