From ff840db708653af8a4951186c90109b47af1f651 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 11 Aug 2011 05:45:48 -0400 Subject: [PATCH] ShellApp: Use global time, not clutter time This is correct in more circumstances. https://bugzilla.gnome.org/show_bug.cgi?id=648149 --- src/shell-app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell-app.c b/src/shell-app.c index b4b65d7e0..b6ff31bc3 100644 --- a/src/shell-app.c +++ b/src/shell-app.c @@ -1065,7 +1065,7 @@ shell_app_launch (ShellApp *app, screen = shell_global_get_screen (global); if (timestamp == 0) - timestamp = clutter_get_current_event_time (); + timestamp = shell_global_get_current_time (global); if (workspace < 0) workspace = meta_screen_get_active_workspace_index (screen);