You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
396 B
14 lines
396 B
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
effects.windowAdded.connect(function(w) { |
|
w.fadeAnimation = effect.animate(w, Effect.Opacity, 100, 1.0, 0.0); |
|
}); |
|
effect.animationEnded.connect(function(w) { |
|
cancel(w.fadeAnimation); |
|
});
|
|
|