From 13ceedc8ece696b56661eb2a7103980e7067d9d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 13 Apr 2016 18:13:07 +0200 Subject: [PATCH] Update comicInfo when the read tick is activated by the user. --- YACReaderLibrary/qml/ComicInfo.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/YACReaderLibrary/qml/ComicInfo.qml b/YACReaderLibrary/qml/ComicInfo.qml index b1583eca..a0625212 100644 --- a/YACReaderLibrary/qml/ComicInfo.qml +++ b/YACReaderLibrary/qml/ComicInfo.qml @@ -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 {