mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 06:33:09 +00:00
fix landscape favourites bar drag and drop, and cleanup folder fix drawer scrolling add settings
22 lines
569 B
QML
22 lines
569 B
QML
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami 2.20 as Kirigami
|
|
|
|
import org.kde.plasma.components 3.0 as PC3
|
|
import org.kde.private.mobile.homescreen.folio 1.0 as Folio
|
|
|
|
PC3.Label {
|
|
id: label
|
|
wrapMode: Text.WordWrap
|
|
maximumLineCount: 2
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignTop
|
|
elide: Text.ElideRight
|
|
|
|
font.pointSize: Kirigami.Theme.defaultFont.pointSize * 0.8
|
|
font.weight: Font.Bold
|
|
}
|