Merge pull request #1465 from Airblader/bugfix-1430
Make click events on status blocks work if 'workspace_buttons no' is set...
This commit is contained in:
commit
797855d98e
|
@ -520,7 +520,10 @@ void child_click_events_key(const char *key) {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void send_block_clicked(int button, const char *name, const char *instance, int x, int y) {
|
void send_block_clicked(int button, const char *name, const char *instance, int x, int y) {
|
||||||
if (child.click_events) {
|
if (!child.click_events) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
child_click_events_initialize();
|
child_click_events_initialize();
|
||||||
|
|
||||||
yajl_gen_map_open(gen);
|
yajl_gen_map_open(gen);
|
||||||
|
@ -546,7 +549,6 @@ void send_block_clicked(int button, const char *name, const char *instance, int
|
||||||
|
|
||||||
yajl_gen_map_close(gen);
|
yajl_gen_map_close(gen);
|
||||||
child_write_output();
|
child_write_output();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -314,18 +314,6 @@ void handle_button(xcb_button_press_event_t *event) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO: Move this to extern get_ws_for_output() */
|
|
||||||
TAILQ_FOREACH (cur_ws, walk->workspaces, tailq) {
|
|
||||||
if (cur_ws->visible) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cur_ws == NULL) {
|
|
||||||
DLOG("No Workspace active?\n");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
int32_t x = event->event_x >= 0 ? event->event_x : 0;
|
int32_t x = event->event_x >= 0 ? event->event_x : 0;
|
||||||
int32_t original_x = x;
|
int32_t original_x = x;
|
||||||
|
|
||||||
|
@ -364,6 +352,18 @@ void handle_button(xcb_button_press_event_t *event) {
|
||||||
x = original_x;
|
x = original_x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* TODO: Move this to extern get_ws_for_output() */
|
||||||
|
TAILQ_FOREACH (cur_ws, walk->workspaces, tailq) {
|
||||||
|
if (cur_ws->visible) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cur_ws == NULL) {
|
||||||
|
DLOG("No Workspace active?\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
switch (event->detail) {
|
switch (event->detail) {
|
||||||
case 4:
|
case 4:
|
||||||
/* Mouse wheel up. We select the previous ws, if any.
|
/* Mouse wheel up. We select the previous ws, if any.
|
||||||
|
@ -1460,10 +1460,8 @@ void reconfig_windows(bool redraw_bars) {
|
||||||
* BUTTON_PRESS, to handle clicks on the workspace buttons
|
* BUTTON_PRESS, to handle clicks on the workspace buttons
|
||||||
* */
|
* */
|
||||||
values[2] = XCB_EVENT_MASK_EXPOSURE |
|
values[2] = XCB_EVENT_MASK_EXPOSURE |
|
||||||
XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
|
XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
|
||||||
if (!config.disable_ws) {
|
XCB_EVENT_MASK_BUTTON_PRESS;
|
||||||
values[2] |= XCB_EVENT_MASK_BUTTON_PRESS;
|
|
||||||
}
|
|
||||||
xcb_void_cookie_t win_cookie = xcb_create_window_checked(xcb_connection,
|
xcb_void_cookie_t win_cookie = xcb_create_window_checked(xcb_connection,
|
||||||
root_screen->root_depth,
|
root_screen->root_depth,
|
||||||
walk->bar,
|
walk->bar,
|
||||||
|
|
Loading…
Reference in New Issue