Fix bug 71843

This commit is contained in:
Oleg Korshul
2024-11-26 00:27:28 +03:00
parent 1a030c43e9
commit 1fb852d37c

View File

@ -944,7 +944,11 @@
{
_style = ("left:-" + (this.HtmlAreaWidth >> 1) + "px;top:" + (-this.HtmlAreaOffset) + "px;");
_style += "color:transparent;caret-color:transparent;background:transparent;";
_style += (AscCommon.AscBrowser.isAppleDevices && !AscCommon.AscBrowser.isTelegramWebView && (AscCommon.AscBrowser.maxTouchPoints > 0)) ? "font-size:0px;" : "font-size:8px;";
if (this.Api.isUseOldMobileVersion())
_style += (AscCommon.AscBrowser.isAppleDevices && !AscCommon.AscBrowser.isTelegramWebView && (AscCommon.AscBrowser.maxTouchPoints > 0)) ? "font-size:0px;" : "font-size:8px;";
else
_style += "font-size:8px;";
}
else
{