aboutsummaryrefslogtreecommitdiff
path: root/backend/x11
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2019-03-15 11:40:31 -0400
committeremersion <contact@emersion.fr>2019-03-15 18:37:35 +0200
commitb135599e5a36acd5a49edfcab052bab729ea3b43 (patch)
tree6b8da4548319ccfe708a98bfafb3a98e91bd0ec1 /backend/x11
parent67523fb22889a6025890b4acd497a973c1d2591b (diff)
backend/x11: improve output number handling
This improves the way the output numbers are handled for the x11 backend. Instead of using the number of active outputs plus one, the last used number is stored and new outputs will increment it. This fixes the situation where you start with one output, create a second, close the first, and create a third. Without this, both outputs will be X11-2, which causes an issue since the identifier will also be identical. With this, the last output is X11-3 and the outputs can be distinguished.
Diffstat (limited to 'backend/x11')
-rw-r--r--backend/x11/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/x11/output.c b/backend/x11/output.c
index 05df7984..ce90ea5e 100644
--- a/backend/x11/output.c
+++ b/backend/x11/output.c
@@ -146,8 +146,8 @@ struct wlr_output *wlr_x11_output_create(struct wlr_backend *backend) {
output_set_refresh(&output->wlr_output, 0);
- snprintf(wlr_output->name, sizeof(wlr_output->name), "X11-%d",
- wl_list_length(&x11->outputs) + 1);
+ snprintf(wlr_output->name, sizeof(wlr_output->name), "X11-%ld",
+ ++x11->last_output_num);
parse_xcb_setup(wlr_output, x11->xcb);
uint32_t mask = XCB_CW_EVENT_MASK;