diff options
author | Bastien Nocera <hadess@hadess.net> | 2006-09-04 09:17:27 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@src.gnome.org> | 2006-09-04 09:17:27 +0000 |
commit | beb2f8f2fb745ef718d229aacd468f91f938c37c (patch) | |
tree | 448428a1d757fc6bdc34d0b6b11c7f65796866bd | |
parent | aeb6318c0aa83cdacc20b2bfe1ee73ef95d31fd1 (diff) |
Hide the preferences menu item as it doesn't do anything yet (Closes:
2006-09-04 Bastien Nocera <hadess@hadess.net>
* src/totem-mozilla-viewer.c: (totem_embedded_add_children):
Hide the preferences menu item as it doesn't do anything yet
(Closes: #353405)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/totem-mozilla-viewer.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2006-09-04 Bastien Nocera <hadess@hadess.net> + * src/totem-mozilla-viewer.c: (totem_embedded_add_children): + Hide the preferences menu item as it doesn't do anything yet + (Closes: #353405) + +2006-09-04 Bastien Nocera <hadess@hadess.net> + * browser-plugin/totemPlugin.cpp: Use the aliased mime-type if there is one, rather than the "embed" mime-type, fixes most Windows Media, and Real embedded movies not having an "Open with..." menu item diff --git a/src/totem-mozilla-viewer.c b/src/totem-mozilla-viewer.c index 33a4b530..56a9026a 100644 --- a/src/totem-mozilla-viewer.c +++ b/src/totem-mozilla-viewer.c @@ -712,6 +712,8 @@ totem_embedded_add_children (TotemEmbedded *emb) child = glade_xml_get_widget (emb->menuxml, "copy_location1"); g_signal_connect (G_OBJECT (child), "activate", G_CALLBACK (on_copy_location1_activate), emb); + child = glade_xml_get_widget (emb->menuxml, "preferences1"); + gtk_widget_hide (child); } static void |