sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 4ba6545c650712b1ec18854fa7f94995d0176637
parent bd236b658787aedd3bb33a10cb558486fbc56d6d
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun,  8 Apr 2018 10:04:23 -0400

Fixup for #1773

Diffstat:
Mswaybar/render.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/swaybar/render.c b/swaybar/render.c @@ -352,7 +352,6 @@ static uint32_t render_workspace_button(cairo_t *cairo, struct swaybar_output *output, struct swaybar_config *config, struct swaybar_workspace *ws, double *x, uint32_t surface_height) { const char *name = ws->name; - const char *whole_name = ws->name; if (config->strip_workspace_numbers) { name = strip_workspace_number(ws->name); } @@ -412,7 +411,7 @@ static uint32_t render_workspace_button(cairo_t *cairo, hotspot->height = height; hotspot->callback = workspace_hotspot_callback; hotspot->destroy = free; - hotspot->data = strdup(whole_name); + hotspot->data = strdup(ws->name); wl_list_insert(&output->hotspots, &hotspot->link); *x += width;