Warning, /plasma/latte-dock/shell/package/contents/configuration/canvas/controls/StickIcon.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2019 Michail Vourlakos <mvourlakos@gmail.com>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 import QtQuick 2.7
0007 
0008 import org.kde.plasma.core 2.0 as PlasmaCore
0009 
0010 GraphicIcon{
0011     readonly property int itemLength: 0.22*width
0012 
0013     Rectangle {
0014         anchors.fill: parent
0015         anchors.margins: parent.margin * 2
0016         color: "transparent"
0017 
0018         Rectangle{
0019             id: circle
0020             anchors.centerIn: parent
0021             width: parent.width
0022             height: parent.height
0023             radius: width/2
0024             color: iconColor
0025         }
0026     }
0027 }