diff --git a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx index 4200ca390c..9a0b19282a 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx @@ -27,6 +27,11 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { }; const showLoadMask = (title, immediately = false) => { + if (showTimer) { + clearTimeout(showTimer); + showTimer = null; + } + if (immediately) { loadMask = f7.dialog.preloader(title); } else {