mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 13:08:48 +03:00
11 lines
210 B
QML
11 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
|
||
|
}
|