Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:Factory checked in at 2016-04-12 18:57:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-control-center (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-control-center.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-control-center"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes    
    2016-03-29 14:35:38.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
   2016-04-12 18:57:19.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Mar 30 10:26:26 UTC 2016 - [email protected]
+
+- Add 0001-network-Fix-empty-Wifi-list.patch: Fix Wifi list not
+  showing APs correctly (bsc#870322, bgo#709641).
+
+-------------------------------------------------------------------

New:
----
  0001-network-Fix-empty-Wifi-list.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gnome-control-center.spec ++++++
--- /var/tmp/diff_new_pack.Xmlgmz/_old  2016-04-12 18:57:20.000000000 +0200
+++ /var/tmp/diff_new_pack.Xmlgmz/_new  2016-04-12 18:57:20.000000000 +0200
@@ -52,6 +52,8 @@
 Patch17:        gnome-control-center-follow-polkit-permissions-for-tz.patch
 # PATCH-FIX-SLE gnome-control-center-890979-change-remote-passwd.patch 
bnc#890979 [email protected] -- user: Enable remote user to change password in 
user panel
 Patch18:        gnome-control-center-890979-change-remote-passwd.patch
+# PATCH-FIX-UPSTREAM 0001-network-Fix-empty-Wifi-list.patch bsc#870322 
bgo#709641 [email protected] -- Fix Wifi list not showing APs corretcly
+Patch19:        0001-network-Fix-empty-Wifi-list.patch
 BuildRequires:  cups-devel
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes
@@ -199,6 +201,7 @@
 %if ! 0%{?is_opensuse}
 %patch18 -p1
 %endif
+%patch19 -p1
 #NEEDS-REBASE
 #patch14 -p1
 

++++++ 0001-network-Fix-empty-Wifi-list.patch ++++++
>From 28c54f3d551af09c414fbf2e2e13a9f7b61781f9 Mon Sep 17 00:00:00 2001
From: Jonathan Kang <[email protected]>
Date: Tue, 5 Apr 2016 14:15:20 +0800
Subject: [PATCH] network: Fix empty Wifi list

Add a callback function for signals "access-point-added" and
"access-point-removed" to update the Wifi list.

https://bugzilla.gnome.org/show_bug.cgi?id=709641
---
 panels/network/net-device-wifi.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/panels/network/net-device-wifi.c b/panels/network/net-device-wifi.c
index e7d0c93..ca55d94 100644
--- a/panels/network/net-device-wifi.c
+++ b/panels/network/net-device-wifi.c
@@ -240,6 +240,18 @@ get_ap_security_string (NMAccessPoint *ap)
 }
 
 static void
+net_device_wifi_access_point_changed (NMDeviceWifi *nm_device_wifi,
+                                      NMAccessPoint *ap,
+                                      gpointer user_data)
+{
+        NetDeviceWifi *device_wifi;
+
+        device_wifi = NET_DEVICE_WIFI (user_data);
+
+        populate_ap_list (device_wifi);
+}
+
+static void
 wireless_enabled_toggled (NMClient       *client,
                           GParamSpec     *pspec,
                           NetDeviceWifi *device_wifi)
@@ -1317,6 +1329,13 @@ net_device_wifi_constructed (GObject *object)
 
         nm_device = net_device_get_nm_device (NET_DEVICE (device_wifi));
 
+        g_signal_connect_object (nm_device, "access-point-added",
+                                 G_CALLBACK 
(net_device_wifi_access_point_changed),
+                                 device_wifi, 0);
+        g_signal_connect_object (nm_device, "access-point-removed",
+                                 G_CALLBACK 
(net_device_wifi_access_point_changed),
+                                 device_wifi, 0);
+
         /* only enable the button if the user can create a hotspot */
         widget = GTK_WIDGET (gtk_builder_get_object 
(device_wifi->priv->builder,
                                                      "start_hotspot_button"));
-- 
2.6.2


Reply via email to