2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 04:57:53 +01:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2021-03-07 05:57:56 +01:00
|
|
|
//
|
2021-03-05 00:35:15 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-02-21 01:39:32 +01:00
|
|
|
import QtQuick 2.5
|
2021-05-13 08:23:56 +02:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2022-02-07 21:00:51 +01:00
|
|
|
|
2020-02-09 01:24:24 +01:00
|
|
|
TextMessage {
|
2022-02-07 21:00:51 +01:00
|
|
|
property bool isStateEvent
|
2020-10-08 21:11:21 +02:00
|
|
|
font.italic: true
|
2021-05-13 08:23:56 +02:00
|
|
|
color: Nheko.colors.buttonText
|
2022-02-21 01:39:32 +01:00
|
|
|
font.pointSize: isStateEvent? 0.8*Settings.fontSize : Settings.fontSize
|
|
|
|
horizontalAlignment: isStateEvent? Text.AlignHCenter : undefined
|
2019-09-07 01:33:46 +02:00
|
|
|
}
|