263503f8ec
Summary: D9638 made docks to slide to "fix" the problem when switching to a virtual desktop that has a window in full screen mode: {F5615542} As it turns out, people don't like this kind of behaviour. Another problem with sliding of docks is that pager goes away. This change disables sliding of docks by default. One can enable sliding of docks by checking "Slide docks" checkbox in slide effect KCM. Yet, transition to/from virtual desktop with a window in full screen mode doesn't look great but that's somewhat acceptable: {F5915681} //(we don't see issues that are present in the video above because the new slide effect elevates docks if sliding of docks is disabled)// Test Plan: Switched between virtual desktops, the default panel didn't slide. Reviewers: #kwin, #plasma, #vdg, ngraham, graesslin Reviewed By: #kwin, #plasma, #vdg, ngraham, graesslin Subscribers: ngraham, graesslin, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D13566
25 lines
842 B
XML
25 lines
842 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 arg="true"/>
|
|
<group name="Effect-Slide">
|
|
<entry name="Duration" type="UInt">
|
|
<default>0</default>
|
|
</entry>
|
|
<entry name="HorizontalGap" type="UInt">
|
|
<default>45</default>
|
|
</entry>
|
|
<entry name="VerticalGap" type="UInt">
|
|
<default>20</default>
|
|
</entry>
|
|
<entry name="SlideDocks" type="Bool">
|
|
<default>false</default>
|
|
</entry>
|
|
<entry name="SlideBackground" type="Bool">
|
|
<default>true</default>
|
|
</entry>
|
|
</group>
|
|
</kcfg>
|