diff options
author | Bastien Nocera <hadess@hadess.net> | 2012-10-10 16:37:36 +0200 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2012-10-10 16:37:36 +0200 |
commit | bc6774912de50fbf52a0d10a997ae169c79e65df (patch) | |
tree | be4333d5de3570e771bfc12b8024a2003de16fef /src/totem-options.c | |
parent | 80f76fb3c44d3c2fc0e9b3c0c464ed0643234d89 (diff) | |
download | totem-bc6774912de50fbf52a0d10a997ae169c79e65df.tar.gz |
main: Fix spinning cursor when launched through nautilus
As in nautilus' bug 664147, DESKTOP_STARTUP_ID was being reset
by a call to _gdk_x11_display_make_default() as we were opening
the display in the secondary instance, which we didn't need.
See also:
http://git.gnome.org/browse/nautilus/commit/?h=gnome-3-6&id=629c9bc27ae8f43df35943e25e78c0d5bd39cfae
https://bugzilla.gnome.org/show_bug.cgi?id=680046
Diffstat (limited to 'src/totem-options.c')
-rw-r--r-- | src/totem-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/totem-options.c b/src/totem-options.c index 902a07b01..1c6ae68d7 100644 --- a/src/totem-options.c +++ b/src/totem-options.c @@ -87,7 +87,7 @@ totem_options_get_context (void) g_option_context_set_translation_domain (context, GETTEXT_PACKAGE); g_option_context_add_group (context, baconoptiongroup); - g_option_context_add_group (context, gtk_get_option_group (TRUE)); + g_option_context_add_group (context, gtk_get_option_group (FALSE)); /* FIXME: * This seems to hang on startup */ /* totem_session_add_options (context); */ |