[app] Fixed condition for BooksBookView being interactive
This commit is contained in:
parent
35cb3cd8ca
commit
01c9f0744b
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ SilicaFlickable {
|
|||
qsTrId("harbour-books-book-view-applying_smaller_fonts")
|
||||
]
|
||||
|
||||
interactive: !linkMenu || !linkMenu.visible || !imageView || !imageView.visible
|
||||
interactive: (!linkMenu || !linkMenu.visible) && (!imageView || !imageView.visible)
|
||||
|
||||
property var linkMenu
|
||||
property var imageView
|
||||
|
|
Loading…
Reference in a new issue