[app] Fixed some references to non-existent QML properties
QML desperately needs a compiler or at least a validator
This commit is contained in:
parent
57ba89da1b
commit
2646d8ad4f
1 changed files with 2 additions and 2 deletions
|
@ -98,7 +98,7 @@ SilicaFlickable {
|
|||
}
|
||||
}
|
||||
|
||||
onBookChanged: if (!book) pager.currentPage = 0
|
||||
onBookChanged: if (!book) pager.setPage(0)
|
||||
|
||||
onSelectingChanged: {
|
||||
if (selecting) {
|
||||
|
@ -137,7 +137,7 @@ SilicaFlickable {
|
|||
//: Pulley menu item
|
||||
//% "Settings"
|
||||
text: qsTrId("harbour-books-menu-settings")
|
||||
visible: !editMode && BooksSettingsMenu
|
||||
visible: BooksSettingsMenu
|
||||
onClicked: {
|
||||
if (!settingsComponent) {
|
||||
settingsComponent = Qt.createComponent("../settings/BooksSettings.qml")
|
||||
|
|
Loading…
Reference in a new issue