diff --git a/kwinmultitasking/contents/ui/panel.qml b/kwinmultitasking/contents/ui/panel.qml index 47edf3f3..fb6a6f88 100644 --- a/kwinmultitasking/contents/ui/panel.qml +++ b/kwinmultitasking/contents/ui/panel.qml @@ -17,9 +17,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . *********************************************************************/ import QtQuick 2.0 +import QtQuick.Window 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 as PlasmaComponents -import org.kde.kwin 2.0; +import org.kde.kwin 2.0 PlasmaCore.Dialog { id: panel @@ -42,7 +43,9 @@ PlasmaCore.Dialog { } } Component.onCompleted: { - // KWin.registerWindow(panel); + KWin.registerWindow(panel); panel.visible = true; + + panel.y = workspace.virtualScreenSize.height - height } }