mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01:00
backend/x11: unmap when output is disabled
This commit is contained in:
parent
c0fd37c491
commit
bfe8138210
1 changed files with 9 additions and 0 deletions
|
@ -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 a new issue