Commit c2b97ef4 authored by GoshaZotov's avatar GoshaZotov

+ previous

parent 6e76045e
......@@ -4185,6 +4185,7 @@ PasteProcessor.prototype =
}
else if(cStyle && presentation.globalTableStyles && presentation.globalTableStyles.Style)
{
var isFoundStyle = false;
for(var j in presentation.globalTableStyles.Style)
{
//TODO isEqual - сравнивает ещё и имя стиля. для случая, когда одинаковый контент, но имя стиля разное, не подойдет это сравнение
......@@ -4192,9 +4193,20 @@ PasteProcessor.prototype =
{
arr_shapes[i].Drawing.graphicObject.Set_TableStyle(j, true);
foundTableStylesIdMap[style_index] = j;
isFoundStyle = true;
break;
}
}
//в данном случае добавляем новый стиль
if(!isFoundStyle)
{
//TODO при добавлении нового стиля - падение. пересмотреть!
/*var newIndexStyle = presentation.globalTableStyles.Add(cStyle);
presentation.TableStylesIdMap[newIndexStyle] = true;
arr_shapes[i].Drawing.graphicObject.Set_TableStyle(newIndexStyle, true);
foundTableStylesIdMap[style_index] = newIndexStyle;*/
}
}
else if(presentation.TableStylesIdMap[style_index])
{
......
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