File indexing completed on 2024-11-10 04:55:54
0001 /* 0002 KWin - the KDE window manager 0003 This file is part of the KDE project. 0004 0005 SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org> 0006 0007 SPDX-License-Identifier: GPL-2.0-or-later 0008 */ 0009 effects.windowAdded.connect(function(w) { 0010 w.fadeAnimation = effect.animate(w, Effect.Opacity, 100, 1.0, 0.0); 0011 }); 0012 effect.animationEnded.connect(function(w) { 0013 cancel(w.fadeAnimation); 0014 });