f9394d83f7
Summary: See https://invent.kde.org/websites/hig-kde-org/-/merge_requests/70 Reviewers: #kwin, ngraham Reviewed By: ngraham Subscribers: ngraham, zzag, apol, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D27827
12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
effects.windowAdded.connect(function(w) {
|
|
w.anim1 = effect.animate(w, Effect.Scale, 100, 1.4, 0.2, 0, QEasingCurve.OutCubic);
|
|
sendTestResponse(typeof(w.anim1) == "number");
|
|
});
|
|
|
|
effects.windowUnminimized.connect(function(w) {
|
|
cancel(w.anim1);
|
|
});
|
|
|
|
effects.windowMinimized.connect(function(w) {
|
|
retarget(w.anim1, 1.5, 200);
|
|
});
|