diff options
author | Ted Gould <ted@canonical.com> | 2009-08-20 11:29:09 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-08-20 11:29:09 -0500 |
commit | da36b66e974c34b2024677396236a62e5973e9c9 (patch) | |
tree | 30f52622f1dc723e40ff5ca3d96ffbd6ef9c89bf | |
parent | 8483b2d92f9b86e6d00afc163b835a47e1bebdbe (diff) | |
download | ayatana-indicator-messages-da36b66e974c34b2024677396236a62e5973e9c9.tar.gz ayatana-indicator-messages-da36b66e974c34b2024677396236a62e5973e9c9.tar.bz2 ayatana-indicator-messages-da36b66e974c34b2024677396236a62e5973e9c9.zip |
Should be in milliseconds not micro
-rw-r--r-- | src/launcher-menu-item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/launcher-menu-item.c b/src/launcher-menu-item.c index 653592c..6c79adb 100644 --- a/src/launcher-menu-item.c +++ b/src/launcher-menu-item.c @@ -164,7 +164,7 @@ activate_cb (LauncherMenuItem * self, gpointer data) time as that's not sent across the bus */ GTimeVal time; g_get_current_time(&time); - gdk_app_launch_context_set_timestamp(context, time.tv_usec); + gdk_app_launch_context_set_timestamp(context, time.tv_usec / 1000); GError * error = NULL; if (!g_app_info_launch(priv->appinfo, NULL, G_APP_LAUNCH_CONTEXT(context), &error)) { |