matrixion/qml/delegates/Placeholder.qml

14 lines
362 B
QML
Raw 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
2022-04-16 03:13:01 +03:00
import "../"
import im.nheko
2019-11-03 05:28:16 +03:00
MatrixText {
required property string typeString
2022-04-16 03:13:01 +03:00
// width: parent.width
2022-04-11 05:18:16 +03:00
color: timelineRoot.palette.inactive.text
2022-04-16 03:13:01 +03:00
text: qsTr("unimplemented event: ") + typeString
}