diff options
author | emersion <[email protected]> | 2018-07-18 00:16:15 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2018-07-18 00:16:15 +0100 |
commit | 48b911a4596f50b585a1073d32413236d9defb60 (patch) | |
tree | a225ff763a647e669cb8c7962b0bc333a8cf86a7 /swaybar/render.c | |
parent | bec982bba62db39f734d21ffbd2a3c8cefb3f6bd (diff) | |
parent | e43c20134ab48ab36391443860cbdf4ac67d8348 (diff) |
Merge pull request #2281 from pvsr/X11_click
Send clicks to swaybar blocks as X11 button ids
Diffstat (limited to 'swaybar/render.c')
-rw-r--r-- | swaybar/render.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/swaybar/render.c b/swaybar/render.c index 909b56f4..d210e25a 100644 --- a/swaybar/render.c +++ b/swaybar/render.c @@ -109,7 +109,7 @@ static void render_sharp_line(cairo_t *cairo, uint32_t color, } static void block_hotspot_callback(struct swaybar_output *output, - int x, int y, uint32_t button, void *data) { + int x, int y, enum x11_button button, void *data) { struct i3bar_block *block = data; struct status_line *status = output->bar->status; i3bar_block_send_click(status, block, x, y, button); @@ -349,7 +349,7 @@ static const char *strip_workspace_number(const char *ws_name) { } static void workspace_hotspot_callback(struct swaybar_output *output, - int x, int y, uint32_t button, void *data) { + int x, int y, enum x11_button button, void *data) { ipc_send_workspace_command(output->bar, (const char *)data); } |