diff --git a/app/src/mobile/util/MobileBackFoward.ts b/app/src/mobile/util/MobileBackFoward.ts index 3d23e5357..4bdf95da3 100644 --- a/app/src/mobile/util/MobileBackFoward.ts +++ b/app/src/mobile/util/MobileBackFoward.ts @@ -102,6 +102,11 @@ const focusStack = (backStack: IBackStack) => { setTimeout(() => { protyle.contentElement.scrollTop = backStack.scrollTop; }, Constants.TIMEOUT_LOAD); + + protyle.app.plugins.forEach(item => { + item.eventBus.emit("switch-protyle", {protyle}); + item.eventBus.emit("loaded-protyle-static", {protyle}); + }); }); };