diff --git a/panels/network/cc-network-panel.c b/panels/network/cc-network-panel.c index 0031a0ae8..0b1942eaf 100644 --- a/panels/network/cc-network-panel.c +++ b/panels/network/cc-network-panel.c @@ -1233,6 +1233,12 @@ add_connection (CcNetworkPanel *panel, if (g_strcmp0 (type, "vpn") != 0 && iface == NULL) return; +#ifdef HAVE_NM_UNSTABLE + /* Don't add the libvirtd bridge to the UI */ + if (g_strcmp0 (nm_setting_connection_get_interface_name (s_con), "virbr0") == 0) + return; +#endif + g_debug ("add %s/%s remote connection: %s", type, g_type_name_from_instance ((GTypeInstance*)connection), nm_connection_get_path (connection));