mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-21 22:52:20 +00:00
backend/x11: unmap when output is disabled
This commit is contained in:
parent
c0fd37c491
commit
bfe8138210
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user