2005-10-19 Robert Love <rml@novell.com>

* gnome/applet/menu-items.c: Patch from Jeroen Zwartepoorte: Use the
	  correct stock icon value, GTK_STOCK_DIALOG_AUTHENTICATION, and not
	  the open-coded "gnome-lockscreen" to get our "secure" network icon.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1054 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Robert Love 2005-10-19 16:13:00 +00:00 committed by Robert Love
parent 1c6e80774d
commit 1f1862ab95
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-10-19 Robert Love <rml@novell.com>
* gnome/applet/menu-items.c: Patch from Jeroen Zwartepoorte: Use the
correct stock icon value, GTK_STOCK_DIALOG_AUTHENTICATION, and not
the open-coded "gnome-lockscreen" to get our "secure" network icon.
2005-10-19 Robert Love <rml@novell.com>
* gnome/vpn-properties/nm-vpn-properties.c: Correctly set the

View file

@ -255,7 +255,7 @@ void network_menu_item_update (NMNetworkMenuItem *item, WirelessNetwork *network
g_object_set (item->security_image, "visible", is_encrypted, NULL);
if (wireless_network_get_encrypted (network))
gtk_image_set_from_stock (GTK_IMAGE (item->security_image), "gnome-lockscreen", GTK_ICON_SIZE_MENU);
gtk_image_set_from_stock (GTK_IMAGE (item->security_image), GTK_STOCK_DIALOG_AUTHENTICATION, GTK_ICON_SIZE_MENU);
else
gtk_image_set_from_stock (GTK_IMAGE (item->security_image), NULL, GTK_ICON_SIZE_MENU);
}