blob: b86a966f7a28c7cf2ae50de6d697143ea8b35963 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import QtQuick
Text {
required property int id
required property string body
required property string summary
property int margin
text: `- ${summary}: ${body}`
}
|