From 1744002658984b3f211ab1363656b741f678130c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sat, 20 May 2023 14:50:32 +0200 Subject: [PATCH] Fix nul -> null in qml --- YACReaderLibrary/qml/ComicInfoView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReaderLibrary/qml/ComicInfoView.qml b/YACReaderLibrary/qml/ComicInfoView.qml index a8600836..5b7eed9f 100644 --- a/YACReaderLibrary/qml/ComicInfoView.qml +++ b/YACReaderLibrary/qml/ComicInfoView.qml @@ -531,7 +531,7 @@ Rectangle { Repeater { id: letterers - model: comicInfo ? comicInfo.getLetterers().length : nul + model: comicInfo ? comicInfo.getLetterers().length : null Column{ Text { color: infoTitleColor