Warning, /kdevelop/kdevelop/plugins/welcomepage/qml/Heading.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2011 Aleix Pol <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 import QtQuick 2.7
0008 
0009 import QtQuick.Controls 2.0
0010 
0011 Label {
0012     property real scale: 1.4
0013 
0014     height: 2 * implicitHeight
0015 
0016     Component.onCompleted: {
0017         font.pointSize = font.pointSize * scale;
0018     }
0019 }