Skip to content

Commit

Permalink
fix drawing in mobile se, pe
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey.Luzyanin authored and Sergey.Luzyanin committed Jan 15, 2025
1 parent 690bc30 commit 32f2766
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions common/Scrolls/mobileTouchManagerBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -805,15 +805,17 @@
}
case AscCommon.c_oEditorId.Spreadsheet:
{
if (this.Api.isStartAddShape === true)
if (this.Api.isStartAddShape === true ||
this.Api.isInkDrawerOn())
{
this.desktopTouchState = false;
}
break;
}
case AscCommon.c_oEditorId.Presentation:
{
if (this.Api.isStartAddShape === true)
if (this.Api.isStartAddShape === true ||
this.Api.isInkDrawerOn())
{
this.desktopTouchState = false;
}
Expand Down

0 comments on commit 32f2766

Please sign in to comment.