mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 11:28:49 +03:00
10 lines
269 B
QML
10 lines
269 B
QML
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
TextMessage {
|
|
font.italic: true
|
|
color: colors.buttonText
|
|
height: isReply ? Math.min(timelineRoot.height / 8, implicitHeight) : undefined
|
|
clip: isReply
|
|
}
|