GNOME Bugzilla – Bug 656374
ShellApp: Use a proper timestamp in shell_app_activate
Last modified: 2011-08-12 07:30:39 UTC
This fixes a bunch of incorrect "Window needs attention" notifications when trying to switch applications in the overview.
Created attachment 193671 [details] [review] ShellApp: Use a proper timestamp in shell_app_activate Otherwise, we'd be comparing against the last_used_time and setting it to 0.
Review of attachment 193671 [details] [review]: This is OK, though I think it'd be better to do: if (timestamp == 0) timestamp = shell_global_get_current_time (global); inside shell_app_activate_full().
Created attachment 193674 [details] [review] ShellApp: Make sure that we use a valid timestamp when activating Otherwise, we'd be comparing against the last_used_time and setting it to 0. This better?
Review of attachment 193674 [details] [review]: Looks good.
Attachment 193674 [details] pushed as 91cba1f - ShellApp: Make sure that we use a valid timestamp when activating