backend/x11: unmap when output is disabled

This commit is contained in:
Simon Ser 2023-06-26 15:53:30 +02:00 committed by Alexander Orzechowski
parent c0fd37c491
commit bfe8138210
1 changed files with 9 additions and 0 deletions

View File

@ -26,6 +26,7 @@
static const uint32_t SUPPORTED_OUTPUT_STATE =
WLR_OUTPUT_STATE_BACKEND_OPTIONAL |
WLR_OUTPUT_STATE_BUFFER |
WLR_OUTPUT_STATE_ENABLED |
WLR_OUTPUT_STATE_MODE |
WLR_OUTPUT_STATE_ADAPTIVE_SYNC_ENABLED;
@ -350,6 +351,14 @@ static bool output_commit(struct wlr_output *wlr_output,
return false;
}
if (state->committed & WLR_OUTPUT_STATE_ENABLED) {
if (state->enabled) {
xcb_map_window(x11->xcb, output->win);
} else {
xcb_unmap_window(x11->xcb, output->win);
}
}
if (state->committed & WLR_OUTPUT_STATE_MODE) {
if (!output_set_custom_mode(wlr_output,
state->custom_mode.width,