Book icons do not return to original position when returning to library
Closed this issue · 7 comments
I've seen the opposite behavior -- the covers are too high, partially
hidden by the header. I suspect this is somehow related to hiding and
showing the header. Despite full-screen views being part of the
initial design documents, the UITK has never really supported them well.
Does the scrolling fix itself after you drag it a bit?
It does indeed, in fact, all I have to do is tap the screen and it corrects itself.
I don't know if it's related, but:
The cover view is supposed to scroll itself back to the beginning when
you return to it (so you can see the book you just read, which is now
at the beginning). That doesn't seem to be happening any more.
This fixes the problem mentioned in my last comment. I don't know if it'll solve the original problem or not. Note that the other lists are still slightly misplaced when returning to them from the BookView.
I changed the back button code to fix this issue, but my commit merge is all messed up. here's the code that worked for me on desktop and Nexus 4
ToolbarItems {
id: bookPageToolbar
back: ToolbarButton {
action: Action {
text: i18n.tr("Library")
iconName: "back"
//this 3 step process forces book covers to return to top of page by force pushing the localBooks page
onTriggered: {pageStack.pop(); pageStack.push(localBooks); pageStack.pop()}
}
}
That's odd....
I'm hesitant to put in a kludge like this. Hopefully we can use this
as a clue to figure out what's really going on. But if neither of us
figure anything out, I'll commit it.
I'll keep looking at it too.