13 lines
288 B
QML
13 lines
288 B
QML
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls as QQC2
|
|
|
|
// This is the main text content of a status
|
|
QQC2.Label {
|
|
id: root
|
|
|
|
textFormat: Text.RichText
|
|
wrapMode: Text.Wrap
|
|
}
|