mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
10 lines
210 B
QML
10 lines
210 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 2.5
|
|
|
|
Label {
|
|
text: qsTr("unimplemented event: ") + eventData.type
|
|
textFormat: Text.PlainText
|
|
wrapMode: Text.Wrap
|
|
width: parent.width
|
|
color: inactiveColors.text
|
|
}
|