f8c0616574
Our first effect written in JavaScript to replace an existing C++ effect. Fade effect has been chosen as it has shown to be problematic in the past and would have needed a migration to AnimationEffect anyway.
20 lines
585 B
XML
20 lines
585 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
|
|
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
|
|
<kcfgfile name=""/>
|
|
|
|
<group name="">
|
|
<entry name="FadeWindows" type="Bool">
|
|
<default>true</default>
|
|
</entry>
|
|
<entry name="FadeInTime" type="Int">
|
|
<default>150</default>
|
|
</entry>
|
|
<entry name="FadeOutTime" type="Int">
|
|
<default>150</default>
|
|
</entry>
|
|
</group>
|
|
|
|
</kcfg>
|