[app] A few more tweaks to reduce jumping between the pages

This commit is contained in:
Slava Monich 2020-02-03 03:09:13 +02:00
parent 6b5fb10b15
commit 8529942924
2 changed files with 15 additions and 12 deletions

View file

@ -87,6 +87,8 @@ SilicaFlickable {
} }
} }
onBookChanged: if (!book) pager.currentPage = 0
Component { Component {
id: linkMenuComponent id: linkMenuComponent
BooksLinkMenu { } BooksLinkMenu { }
@ -259,7 +261,7 @@ SilicaFlickable {
property int jumpingTo: -1 property int jumpingTo: -1
function jumpTo(page) { function jumpTo(page) {
if (page >=0 && page !== bookViewWatcher.currentIndex) { if (book && page >=0 && page !== bookViewWatcher.currentIndex) {
jumpingTo = page jumpingTo = page
bookViewWatcher.positionViewAtIndex(page) bookViewWatcher.positionViewAtIndex(page)
pager.currentPage = page pager.currentPage = page

View file

@ -1,6 +1,6 @@
/* /*
* Copyright (C) 2015-2018 Jolla Ltd. * Copyright (C) 2015-2020 Jolla Ltd.
* Copyright (C) 2015-2018 Slava Monich <slava.monich@jolla.com> * Copyright (C) 2015-2020 Slava Monich <slava.monich@jolla.com>
* *
* You may use this file under the terms of the BSD license as follows: * You may use this file under the terms of the BSD license as follows:
* *
@ -8,15 +8,15 @@
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
* are met: * are met:
* *
* * Redistributions of source code must retain the above copyright * 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer. * notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright * 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in * notice, this list of conditions and the following disclaimer
* the documentation and/or other materials provided with the * in the documentation and/or other materials provided with the
* distribution. * distribution.
* * Neither the name of Jolla Ltd nor the names of its contributors * 3. Neither the names of the copyright holders nor the names of its
* may be used to endorse or promote products derived from this * contributors may be used to endorse or promote products derived
* software without specific prior written permission. * from this software without specific prior written permission.
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
@ -360,6 +360,7 @@ void BooksBookModel::setBook(BooksBook* aBook)
iBookRef.reset(); iBookRef.reset();
iTitle = QString(); iTitle = QString();
iPageStack->clear(); iPageStack->clear();
iPageStack->setPageMarks(BooksPos::List());
HDEBUG("<none>"); HDEBUG("<none>");
} }
startReset(ReasonLoading, true); startReset(ReasonLoading, true);