Update comicInfo when the read tick is activated by the user.

This commit is contained in:
Luis Ángel San Martín 2016-04-13 18:13:07 +02:00
parent cd07135af2
commit 13ceedc8ec

View File

@ -50,6 +50,12 @@ Rectangle {
InfoTick {
x: 27
y: 5
read: comicInfo.read
onReadChangedByUser: {
comicInfo.read = read;
}
}
}
@ -76,6 +82,12 @@ Rectangle {
InfoTick {
Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
read: comicInfo.read
onReadChangedByUser: {
comicInfo.read = read;
}
}
Item {