Commit 71c552be authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bugs #34211 #34212

parent 5f3b1e41
...@@ -3472,6 +3472,8 @@ CDocument.prototype.Reset_RecalculateCache = function() ...@@ -3472,6 +3472,8 @@ CDocument.prototype.Reset_RecalculateCache = function()
{ {
this.Content[Index].Reset_RecalculateCache(); this.Content[Index].Reset_RecalculateCache();
} }
this.Footnotes.ResetRecalculateCache();
}; };
CDocument.prototype.Stop_Recalculate = function() CDocument.prototype.Stop_Recalculate = function()
{ {
......
...@@ -3173,6 +3173,13 @@ CFootnotesController.prototype.RemoveTextSelection = function() ...@@ -3173,6 +3173,13 @@ CFootnotesController.prototype.RemoveTextSelection = function()
this.CurFootnote.RemoveTextSelection(); this.CurFootnote.RemoveTextSelection();
} }
}; };
CFootnotesController.prototype.ResetRecalculateCache = function()
{
for (var Id in this.Footnote)
{
this.Footnote[Id].Reset_RecalculateCache();
}
};
function CFootEndnotePageColumn() function CFootEndnotePageColumn()
......
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