diff options
author | Robert Tari <robert@tari.in> | 2020-10-25 16:27:45 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-10-26 11:57:18 +0100 |
commit | 33860bf0e3eeda568aa9347542947472c53b4d6b (patch) | |
tree | 9e8fbabd22c26194ce7b7f72ec7a4856d1ce030f /src/profile.vala | |
parent | fd441718e6d6b561c63f5d71edca7b6370b000fe (diff) | |
download | ayatana-indicator-bluetooth-33860bf0e3eeda568aa9347542947472c53b4d6b.tar.gz ayatana-indicator-bluetooth-33860bf0e3eeda568aa9347542947472c53b4d6b.tar.bz2 ayatana-indicator-bluetooth-33860bf0e3eeda568aa9347542947472c53b4d6b.zip |
src/*: Switch to new activate state connect approach, rathern than using notify["state"].connect.
Diffstat (limited to 'src/profile.vala')
-rw-r--r-- | src/profile.vala | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/profile.vala b/src/profile.vala index 921b573..c52481f 100644 --- a/src/profile.vala +++ b/src/profile.vala @@ -123,14 +123,11 @@ class Profile: Object protected Action create_enabled_action (Bluetooth bluetooth) { var action = new SimpleAction.stateful ("bluetooth-enabled", - null, + VariantType.BOOLEAN, new Variant.boolean (bluetooth.enabled)); - action.activate.connect (() - => action.change_state (new Variant.boolean (!action.get_state().get_boolean()))); - - action.change_state.connect ((action, requestedValue) - => bluetooth.try_set_enabled (requestedValue.get_boolean())); + action.activate.connect ((action, state) + => bluetooth.try_set_enabled (state.get_boolean())); bluetooth.notify["enabled"].connect (() => action.set_state (new Variant.boolean (bluetooth.enabled))); |