summaryrefslogtreecommitdiff
path: root/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui.js')
-rw-r--r--ui.js11
1 files changed, 4 insertions, 7 deletions
diff --git a/ui.js b/ui.js
index 5b703fa..ea3354b 100644
--- a/ui.js
+++ b/ui.js
@@ -18,7 +18,6 @@
const Clutter = imports.gi.Clutter;
const GObject = imports.gi.GObject;
const St = imports.gi.St;
-const Tweener = imports.ui.tweener;
const PopupMenu = imports.ui.popupMenu;
const Config = imports.misc.config;
@@ -79,21 +78,19 @@ var PopupBluetoothDeviceMenuItem = GObject.registerClass(
});
button.connect("enter-event", (widget) => {
- Tweener.addTween(
- widget.child, {
+ widget.child.ease( {
opacity: 255,
time: 0.05,
- transition: 'linear'
+ transition: Clutter.AnimationMode.LINEAR
}
);
});
button.connect("leave-event", (widget) => {
- Tweener.addTween(
- widget.child, {
+ widget.child.ease( {
opacity: 155,
time: 0.05,
- transition: 'linear'
+ transition: Clutter.AnimationMode.LINEAR
}
);
});