diff options
author | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-14 22:01:33 +0200 |
---|---|---|
committer | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-14 22:01:33 +0200 |
commit | 15948fd1d48c64fd7cc885ca0400bcd66daf3f13 (patch) | |
tree | 6ff1ef6fc269c0c59271da4c3dcb8b56c769e48c | |
parent | f43309aeb53cfe06354010227d08b44183bee765 (diff) | |
download | pyParrotZikTCP-15948fd1d48c64fd7cc885ca0400bcd66daf3f13.tar.xz pyParrotZikTCP-15948fd1d48c64fd7cc885ca0400bcd66daf3f13.zip |
Fix noise cancel in api version 1.
-rwxr-xr-x | ParrotZikTray | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ParrotZikTray b/ParrotZikTray index 52b8d12..373e9ee 100755 --- a/ParrotZikTray +++ b/ParrotZikTray @@ -202,7 +202,7 @@ class ParrotZikVersion1Interface(ParrotZikBaseInterface): self.concert_hall_mode.show() super(ParrotZikVersion1Interface, self).activate(parrot) - self.noise_cancelation.set_active(self.parrot.noise_cancel) + self.noise_cancelation.set_active(self.parrot.cancel_noise) self.lou_reed_mode.set_active(self.parrot.lou_reed_mode) self.concert_hall_mode.set_active(self.parrot.concert_hall) |