summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaushan Kumar Pandey <raushan.kumar478@gmail.com>2020-09-02 01:30:42 +0530
committerSimon McVittie <smcv@debian.org>2020-09-26 11:30:25 +0100
commitef32603aed7a1ce475a73cbdb21ecc1ae3a31e7d (patch)
treec3905ee516c66d55896161fdb582ff323631238f
parentdf920f304f74d6f285a6ca3849b1bb94f3d185c0 (diff)
Update ui.js
Tweener has been removed from gnome-shell. This changes fixes the issue in gnome 3.38 Gbp-Pq: Name Update-ui.js.patch
-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
}
);
});