matrixion/qml/delegates/NoticeMessage.qml

15 lines
450 B
QML
Raw Permalink Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.5
import im.nheko
2021-05-13 09:23:56 +03:00
2020-02-09 03:24:24 +03:00
TextMessage {
property bool isStateEvent
2022-04-16 03:13:01 +03:00
2022-04-15 06:53:41 +03:00
color: timelineRoot.palette.placeholderText
2022-04-16 03:13:01 +03:00
font.italic: true
font.pointSize: isStateEvent ? 0.8 * Settings.fontSize : Settings.fontSize
horizontalAlignment: isStateEvent ? Text.AlignHCenter : undefined
2019-09-07 02:33:46 +03:00
}