nheko/resources/qml/delegates/Placeholder.qml

16 lines
356 B
QML
Raw Normal View History

2021-03-05 00:35:15 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
//
2021-03-05 00:35:15 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
2019-11-03 03:28:16 +01:00
import ".."
2021-05-13 08:23:56 +02:00
import im.nheko 1.0
2019-11-03 03:28:16 +01:00
MatrixText {
required property string typeString
text: qsTr("unimplemented event: ") + typeString
// width: parent.width
2021-05-13 08:23:56 +02:00
color: Nheko.inactiveColors.text
}