diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | src/bluez.vala | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index ed3488d..0a9d309 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-bluetooth (0.0.6+14.04.20140207-0ubuntu2) trusty; urgency=medium + + * Toggle rfkill again so that we have a chance of persisting the bluetooth + state across reboots. (LP: #1232828) + + -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> Thu, 10 Apr 2014 15:38:13 -0400 + indicator-bluetooth (0.0.6+14.04.20140207-0ubuntu1) trusty; urgency=low [ Ted Gould ] diff --git a/src/bluez.vala b/src/bluez.vala index a189a16..323674c 100644 --- a/src/bluez.vala +++ b/src/bluez.vala @@ -35,7 +35,7 @@ public class Bluez: Bluetooth, Object set { _powered = value; update_enabled(); } } - private KillSwitch killswitch = null; + private KillSwitch killswitch = new RfKillSwitch (); private string adapter_path = null; |