Revert last commit.

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

View file

@ -1,9 +1,3 @@
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), GTK_STOCK_DIALOG_AUTHENTICATION, GTK_ICON_SIZE_MENU);
gtk_image_set_from_stock (GTK_IMAGE (item->security_image), "gnome-lockscreen", GTK_ICON_SIZE_MENU);
else
gtk_image_set_from_stock (GTK_IMAGE (item->security_image), NULL, GTK_ICON_SIZE_MENU);
}