Commit c991aa0d authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

не скроллились табнейлы при пертаскивании, дергался главный скролл в особых случаях

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52815 954022d7-b5bf-4e40-9824-e11837661b57
parent 967c1578
......@@ -3612,7 +3612,7 @@ function CThumbnailsManager()
oThis.OnUpdateOverlay();
// теперь нужно посмотреть, нужно ли проскроллить
if (this.m_bIsScrollVisible)
if (oThis.m_bIsScrollVisible)
{
var _Y = global_mouseEvent.Y - oThis.m_oWordControl.Y;
var _abs_pos = oThis.m_oWordControl.m_oThumbnails.AbsolutePosition;
......
......@@ -1848,7 +1848,7 @@ function CEditorPage(api)
return;
}
var lNumSlide = ((scrollPositionY / this.m_dDocumentPageHeight) + 0.1) >> 0; // 0.1 - ошибка округления!!
var lNumSlide = ((scrollPositionY / this.m_dDocumentPageHeight) + 0.01) >> 0; // 0.01 - ошибка округления!!
if (lNumSlide != this.m_oDrawingDocument.SlideCurrent)
{
if (this.IsGoToPageMAXPosition)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment