diff --git a/ChangeLog b/ChangeLog index d1a80ba01a..5e7b442c88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-10-19 Robert Love + + * 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 * gnome/vpn-properties/nm-vpn-properties.c: Correctly set the diff --git a/gnome/applet/menu-items.c b/gnome/applet/menu-items.c index 68974a16f4..9474679ca1 100644 --- a/gnome/applet/menu-items.c +++ b/gnome/applet/menu-items.c @@ -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); }