diff -Naur network-manager-applet-1.2.2-old/src/applet-device-wifi.c network-manager-applet-1.2.2/src/applet-device-wifi.c --- network-manager-applet-1.2.2-old/src/applet-device-wifi.c 2016-04-25 14:36:36.000000000 +0300 +++ network-manager-applet-1.2.2/src/applet-device-wifi.c 2016-08-04 22:40:35.269371768 +0300 @@ -539,7 +539,6 @@ /* Make the new connection available only for the current user */ s_con = (NMSettingConnection *) nm_setting_connection_new (); - nm_setting_connection_add_permission (s_con, "user", g_get_user_name (), NULL); nm_connection_add_setting (connection, NM_SETTING (s_con)); ssid = nm_access_point_get_ssid (ap); diff -Naur network-manager-applet-1.2.2-old/src/connection-editor/ce-page-general.ui network-manager-applet-1.2.2/src/connection-editor/ce-page-general.ui --- network-manager-applet-1.2.2-old/src/connection-editor/ce-page-general.ui 2016-04-25 14:36:36.000000000 +0300 +++ network-manager-applet-1.2.2/src/connection-editor/ce-page-general.ui 2016-08-04 22:25:15.248774274 +0300 @@ -55,7 +55,7 @@ All _users may connect to this network - True + False True False 12 diff -Naur network-manager-applet-1.2.2-old/src/connection-editor/page-general.c network-manager-applet-1.2.2/src/connection-editor/page-general.c --- network-manager-applet-1.2.2-old/src/connection-editor/page-general.c 2016-04-25 14:36:36.000000000 +0300 +++ network-manager-applet-1.2.2/src/connection-editor/page-general.c 2016-08-04 22:41:00.638196112 +0300 @@ -293,9 +293,6 @@ if (priv->is_vpn) gtk_widget_hide (priv->autoconnect); - /* 'All users may connect to this network' checkbox */ - if (nm_setting_connection_get_num_permissions (priv->setting)) - global_connection = FALSE; gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->all_checkbutton), global_connection); stuff_changed (NULL, self); diff -Naur network-manager-applet-1.2.2-old/src/mobile-helpers.c network-manager-applet-1.2.2/src/mobile-helpers.c --- network-manager-applet-1.2.2-old/src/mobile-helpers.c 2016-04-25 14:36:36.000000000 +0300 +++ network-manager-applet-1.2.2/src/mobile-helpers.c 2016-08-04 22:40:19.202483047 +0300 @@ -218,9 +218,6 @@ NM_SETTING_CONNECTION_AUTOCONNECT, FALSE, NM_SETTING_CONNECTION_UUID, uuid, NULL); - /* Make the new connection available only for the current user */ - nm_setting_connection_add_permission ((NMSettingConnection *) setting, - "user", g_get_user_name (), NULL); g_free (uuid); g_free (id); nm_connection_add_setting (connection, setting);