2019-09-18 21:09:46 +02:00
|
|
|
import QtQuick 2.5
|
2019-10-06 11:08:13 +02:00
|
|
|
import QtQuick.Controls 2.1
|
2019-09-18 21:09:46 +02:00
|
|
|
|
|
|
|
Label {
|
2019-10-08 20:55:09 +02:00
|
|
|
text: qsTr("unimplemented event: ") + model.type
|
2019-09-18 21:09:46 +02:00
|
|
|
textFormat: Text.PlainText
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
width: parent.width
|
|
|
|
color: inactiveColors.text
|
|
|
|
}
|