From: Orestis Floros Date: Fri, 29 Mar 2019 14:10:19 +0000 (+0200) Subject: child_handle_button: Call only if x >= offset X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=commitdiff_plain;h=8903f297950fa2f79924b21305d10102af1b5e2d child_handle_button: Call only if x >= offset c2a1b6e9 was a bit overzealous, other actions should be executed if the button was pressed after the workspace buttons but before the statusline. Also, should we allow other actions everywhere in the bar if click events are disabled by the child? --- diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index fb331a08..b6f27738 100644 --- a/i3bar/src/xcb.c +++ b/i3bar/src/xcb.c @@ -454,19 +454,12 @@ static bool execute_custom_command(xcb_keycode_t input_code, bool event_is_relea return false; } -static void child_handle_button(xcb_button_press_event_t *event, i3_output *output, int32_t x) { +static void child_handle_button(xcb_button_press_event_t *event, i3_output *output, uint32_t statusline_x) { if (!child_want_click_events()) { return; } - const int tray_width = get_tray_width(output->trayclients); - /* Calculate the horizontal coordinate (x) of the start of the statusline by - * subtracting its width and the width of the tray from the bar width. */ - const int offset = output->rect.w - output->statusline_width - tray_width - logical_px((tray_width > 0) * sb_hoff_px); - /* x of the click event relative to the start of the statusline. */ - const uint32_t statusline_x = x - offset; - - if (x < offset || statusline_x > (uint32_t)output->statusline_width) { + if (statusline_x > (uint32_t)output->statusline_width) { return; } @@ -551,12 +544,26 @@ static void handle_button(xcb_button_press_event_t *event) { } if (x > workspace_width) { - if (!event_is_release) { - child_handle_button(event, walk, x); + const int tray_width = get_tray_width(walk->trayclients); + /* Calculate the horizontal coordinate (x) of the start of the + * statusline by subtracting its width and the width of the tray from + * the bar width. */ + const int offset = walk->rect.w - walk->statusline_width - + tray_width - logical_px((tray_width > 0) * sb_hoff_px); + if (x >= offset) { + /* Click was after the start of the statusline, return to avoid + * executing any other actions even if a click event is not + * produced eventually. */ + + if (!event_is_release) { + /* x of the click event relative to the start of the + * statusline. */ + const uint32_t statusline_x = x - offset; + child_handle_button(event, walk, statusline_x); + } + + return; } - /* Return to avoid executing any other actions when a separator is - * clicked. */ - return; } /* If a custom command was specified for this mouse button, it overrides