From 85de6718e008d628b84595ff2ca9e1ec86b54eaa Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Mon, 21 Dec 2020 00:43:40 +0100 Subject: desktop.vala: Do not hide the indicator fixes #15 --- src/desktop.vala | 9 ++++++--- src/killswitch.vala | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/desktop.vala b/src/desktop.vala index f576144..ea3a806 100644 --- a/src/desktop.vala +++ b/src/desktop.vala @@ -64,9 +64,12 @@ class Desktop: Profile build_menu (); // know when to show the indicator & when to hide it - settings.changed["visible"].connect (()=> update_visibility()); - bluetooth.notify["supported"].connect (() => update_visibility()); - update_visibility (); + if (Environment.get_variable("MIR_SOCKET") != null) + { + settings.changed["visible"].connect (()=> update_visibility()); + bluetooth.notify["supported"].connect (() => update_visibility()); + update_visibility (); + } // when devices change, rebuild our device section bluetooth.devices_changed.connect (()=> { diff --git a/src/killswitch.vala b/src/killswitch.vala index 4ed87e9..0b900c0 100644 --- a/src/killswitch.vala +++ b/src/killswitch.vala @@ -129,7 +129,7 @@ public class RfKillSwitch: KillSwitch, Object var event = Linux.RfKillEvent(); var n = sizeof (Linux.RfKillEvent); var bytesread = Posix.read (fd, &event, n); - + if (bytesread == n) { process_event (event); -- cgit v1.2.3