all repos — openbox @ 59eb52b7c6ccbe83742e5eb8b40b5e32bb6600cc

openbox fork - make it a bit more like ryudo

Don't move windows to current desktop on net_active_window if the event didn't come from the user.

Instead, just activate the flashy thinger.
Mikael Magnusson mikachu@gmail.com
commit

59eb52b7c6ccbe83742e5eb8b40b5e32bb6600cc

parent

e3134210d820340ef63bb5c21c9a56856147f0a9

1 files changed, 6 insertions(+), 3 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -3904,12 +3904,15 @@

client_focus(self); } -/* this function exists to map to the client_activate message in the ewmh, - the user arg is unused because nobody uses it correctly anyway. */ +/* this function exists to map to the net_active_window message in the ewmh */ void client_activate(ObClient *self, gboolean here, gboolean raise, gboolean unshade, gboolean user) { - client_present(self, here, raise, unshade); + if (user || (self->desktop == DESKTOP_ALL || + self->desktop == screen_desktop)) + client_present(self, here, raise, unshade); + else + client_hilite(self, TRUE); } static void client_bring_windows_recursive(ObClient *self,