mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 11:04:25 -04:00
Add setting to hide the "Continue Reading..." banner from the home view.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user