Skip to content

don't pop currentItem when insert into pageStack

Ghost User requested to merge work/dont_pop into master

@mart I don't understand why we need to pop the current item when insert into pagestack? This can cause confusion for developers. For example if I want to push new page C into this stack: A -> B, the currentIndex is 0 so I'm on A, after push(C) I get A -> C instead of A -> B -> C which is what I expected.

Merge request reports