From 31dade6279e9b23f77d37beb013921f009be0168 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 8 Sep 2012 14:23:36 -0400 Subject: [PATCH] network: Mark all rows representing saved connections as such When we find a saved connection among the access points already in the list, we forget to mark it as saved, so the arrow to go to the details page is not shown. --- panels/network/net-device-wifi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/panels/network/net-device-wifi.c b/panels/network/net-device-wifi.c index fdccc0a86..96f7f792a 100644 --- a/panels/network/net-device-wifi.c +++ b/panels/network/net-device-wifi.c @@ -583,6 +583,7 @@ add_saved_connection (NetDeviceWifi *device_wifi, NMConnection *connection, NMDe if (find_ssid_in_store (GTK_TREE_MODEL (store), &iter, ssid_text)) gtk_list_store_set (store, &iter, COLUMN_ID, id, + COLUMN_AP_IS_SAVED, TRUE, -1); else gtk_list_store_insert_with_values (store, &iter,