Commit 2bec678c authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 24733 - Ошибка в консоли при выделении групп изображений

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56632 954022d7-b5bf-4e40-9824-e11837661b57
parent a1bda69f
......@@ -3998,9 +3998,9 @@ DrawingObjectsController.prototype =
if(image_props.imageUrl !== null && image_props.imageUrl !== group_drawing_props.imageProps.imageUrl)
image_props.imageUrl = null;
if(image_props.w != null && image_props.w !== new_image_props.w)
if(image_props.w != null && image_props.w !== group_drawing_props.imageProps.w)
image_props.w = null;
if(image_props.h != null && image_props.h !== new_image_props.h)
if(image_props.h != null && image_props.h !== group_drawing_props.imageProps.h)
image_props.h = null;
}
}
......
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