From 046105ff58d7a31bf86633f210bca6f1e3e36f00 Mon Sep 17 00:00:00 2001 From: Stefan Schneider-Kennedy Date: Mon, 16 Aug 2010 13:26:40 +1000 Subject: [PATCH] Opera flash plugin no longer prevents in-page focus changing. Specifically, clicking a focussed window no longer forces set_focus. --- src/click.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/click.c b/src/click.c index 5efa16c9..d8183269 100644 --- a/src/click.c +++ b/src/click.c @@ -315,7 +315,7 @@ int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_ } /* Set focus in any case */ - set_focus(conn, client, true); + set_focus(conn, client, false); /* Let’s see if this was on the borders (= resize). If not, we’re done */ DLOG("press button on x=%d, y=%d\n", event->event_x, event->event_y);