Warning, /multimedia/kdenlive/src/monitor/view/OverlayMinimal.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2018 Jean-Baptiste Mardelle <jb@kdenlive.org>
0003     SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 */
0005 
0006 import QtQuick.Controls 2.15
0007 import QtQuick 2.15
0008 
0009 Item {
0010     id: overlay
0011     Rectangle {
0012         color: root.overlayColor
0013         width: frame.width / 20
0014         height: 1
0015         anchors.centerIn: parent
0016     }
0017     Rectangle {
0018         color: root.overlayColor
0019         height: frame.width / 20
0020         width: 1
0021         anchors.centerIn: parent
0022     }
0023 }