Warning, /plasma/plasma-desktop/kcms/keyboard/tastenbrett/qml/KeyCapLabel.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2019 Harald Sitter <sitter@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 import QtQuick 2.12
0008 import QtQuick.Controls 2.5
0009 
0010 Label {
0011     elide: Text.ElideRight
0012     color: labelColor // from parent scope
0013 
0014     fontSizeMode: Text.Fit
0015     minimumPixelSize: 6
0016     font.pixelSize: parent.height
0017 }