diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | bin/net_applet | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,3 +1,4 @@ +- use SNI when running under Enlightenment (mga#23954) - force use of X11 backend when running on Wayland (mga#20680) - drakfirewall: drop references to nonexistant mydsn, udhcpd, imap, courier-imap-pop, bittorrent (mga#23357) diff --git a/bin/net_applet b/bin/net_applet index e891b22..a159dcd 100755 --- a/bin/net_applet +++ b/bin/net_applet @@ -230,9 +230,9 @@ my %actions = ( }, ); -# Plasma supports SNI natively. Other DE do not. In that case, we fall back to +# Plasma and Enlightenment support SNI natively. Other DE do not. In that case, we fall back to # the deprecated GtkStatusIcon. -if ($ENV{DESKTOP_SESSION} =~ /plasma$/i) { +if ($ENV{DESKTOP_SESSION} =~ /plasma$|enlightenment/i) { $is_sni = 1; Glib::Object::Introspection->setup( |