From: Dana Jansens Date: Tue, 30 Mar 2010 00:36:35 +0000 (-0400) Subject: if a launch time isnt there (like for client_activate) assume the window launched... X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fopenbox;a=commitdiff_plain;h=d826971d7206b3ecc99e9eabf64625303825952a if a launch time isnt there (like for client_activate) assume the window launched before the last desktop switch, not after. ie don't change desktops if you're not sure. --- diff --git a/openbox/client.c b/openbox/client.c index 3e10a9ab..adbbc13b 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -725,8 +725,9 @@ static gboolean client_can_steal_focus(ObClient *self, Time steal_time, if (!(self->desktop == screen_desktop || self->desktop == DESKTOP_ALL) && /* the timestamp is from before you changed desktops */ - launch_time && screen_desktop_user_time && - !event_time_after(launch_time, screen_desktop_user_time)) + (!launch_time || + (screen_desktop_user_time && + !event_time_after(launch_time, screen_desktop_user_time)))) { steal = FALSE; ob_debug_type(OB_DEBUG_FOCUS,