diff options
author | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-12 20:35:58 +0200 |
---|---|---|
committer | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-12 20:35:58 +0200 |
commit | dfb630d52ccae6c8fdd70ab7210c32b327a4fed7 (patch) | |
tree | b2d8201baf0454b0bf6304f21e49a1afc23a3f47 /ParrotZikTray | |
parent | 566a27ff40c9478b2fd005890e39705082aceb9c (diff) | |
download | pyParrotZikTCP-dfb630d52ccae6c8fdd70ab7210c32b327a4fed7.tar.xz pyParrotZikTCP-dfb630d52ccae6c8fdd70ab7210c32b327a4fed7.zip |
Refactor.
Diffstat (limited to 'ParrotZikTray')
-rwxr-xr-x | ParrotZikTray | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ParrotZikTray b/ParrotZikTray index 4518bc9..f66de17 100755 --- a/ParrotZikTray +++ b/ParrotZikTray @@ -4,7 +4,7 @@ import gtk import ParrotZik import BluetoothPairedDevices from SysIndicator import MenuItem -from SysIndicator import UniversalMenu +from SysIndicator import Menu from SysIndicator import SysIndicator REFRESH_FREQUENCY = 1000 @@ -37,7 +37,7 @@ class Stop(Exception): class ParrotZikIndicator(SysIndicator): def __init__(self): - self.menu = UniversalMenu() + self.menu = Menu() self.info_item = MenuItem("Parrot Zik Not connected..", None, sensitive=False) |