Add setting to hide the "Continue Reading..." banner from the home view.

This commit is contained in:
Luis Ángel San Martín
2024-12-28 14:36:42 +01:00
parent e5eda8e461
commit f5eb81dcac
11 changed files with 44 additions and 19 deletions

View File

@ -193,7 +193,7 @@ Rectangle {
id: continueReadingTopView
color: "#00000000"
height: list.count > 0 ? main.continuReadingHeight : main.topContentMargin
height: list.count > 0 && showContinueReading ? main.continuReadingHeight : main.topContentMargin
Rectangle {
color: continueReadingBackgroundColor
@ -203,7 +203,7 @@ Rectangle {
width: main.width
height: main.continuReadingHeight - main.topContentMargin
visible: list.count > 0
visible: list.count > 0 && showContinueReading
Text {
id: continueReadingText