[app] Mark more properties as readonly

This commit is contained in:
Slava Monich 2021-08-07 04:47:20 +03:00
parent 21c278dae6
commit 902d6c20af

View file

@ -1,6 +1,6 @@
/* /*
Copyright (C) 2015-2020 Jolla Ltd. Copyright (C) 2015-2021 Jolla Ltd.
Copyright (C) 2015-2020 Slava Monich <slava.monich@jolla.com> Copyright (C) 2015-2021 Slava Monich <slava.monich@jolla.com>
You may use this file under the terms of BSD license as follows: You may use this file under the terms of BSD license as follows:
@ -60,10 +60,10 @@ Item {
signal scrollRight() signal scrollRight()
signal scrollLeft() signal scrollLeft()
property bool _haveBooks: shelfModel && shelfModel.count readonly property bool _haveBooks: shelfModel.count > 0
property int _cellsPerRow: Math.floor(width/cellWidth) readonly property int _cellsPerRow: Math.floor(width/cellWidth)
readonly property int _remorseTimeout: 5000 readonly property int _remorseTimeout: 5000
property bool _loading: !shelfModel || shelfModel.loading || startAnimationTimer.running readonly property bool _loading: shelfModel.loading || startAnimationTimer.running
property var _remorse property var _remorse
on_HaveBooksChanged: if (!_haveBooks) shelfView.stopEditing() on_HaveBooksChanged: if (!_haveBooks) shelfView.stopEditing()