diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-10-14 18:27:17 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-10-14 18:27:17 -0500 |
commit | 46d4ad6f0e470049fee1236e93f2e8f8191da72b (patch) | |
tree | c6ff29075c9dda8f1dacfa4808737c2d39f64269 /src | |
parent | e15cd36f96ae3108faf50da2c613d4a3e3d44359 (diff) | |
download | ayatana-indicator-bluetooth-46d4ad6f0e470049fee1236e93f2e8f8191da72b.tar.gz ayatana-indicator-bluetooth-46d4ad6f0e470049fee1236e93f2e8f8191da72b.tar.bz2 ayatana-indicator-bluetooth-46d4ad6f0e470049fee1236e93f2e8f8191da72b.zip |
omit the rfkill killswitch altogether, leaving on/off to bluez via org.bluez.Adapter's Powered property
Diffstat (limited to 'src')
-rw-r--r-- | src/main.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.vala b/src/main.vala index caee3b3..828a96b 100644 --- a/src/main.vala +++ b/src/main.vala @@ -26,7 +26,7 @@ public static int main (string[] args) Intl.textdomain (Config.GETTEXT_PACKAGE); // create the backend - var bluetooth = new Bluez (new RfKillSwitch ()); + var bluetooth = new Bluez (null); // start the service var service = new Service (bluetooth); |