Warning, /plasma/plasma-desktop/applets/kickoff/package/contents/ui/DropAreaListView.qml is written in an unsupported language. File is not indexed.
0001 /* 0002 * SPDX-FileCopyrightText: 2021 Noah Davis <noahadvs@gmail.com> 0003 * SPDX-License-Identifier: LGPL-2.0-or-later 0004 */ 0005 0006 import QtQuick 2.15 0007 import QtQml 2.15 0008 0009 KickoffListView { 0010 id: root 0011 KickoffDropArea { 0012 z: -1 0013 parent: root 0014 anchors.fill: parent 0015 targetView: root.view 0016 scrollUpMargin: root.header.height * 2 0017 scrollDownMargin: root.footer.height * 2 0018 } 0019 }