Took out memory garbage collection call that was significantly slowing down printing.

Added a forced memory garbage collection call after editing a table
This commit is contained in:
2016-03-02 19:52:00 +00:00
parent d874371f44
commit e9b3cd91e2
2 changed files with 1 additions and 4 deletions

View File

@@ -2421,6 +2421,7 @@ namespace Volian.Controls.Library
{
this.GetCellRange(e.Row, e.Col).Style.ForeColor = Color.Black;
this.AdjustGridControlSize();
GC.Collect(GC.GetGeneration(this)); // there is a memory leak in Regex this fixes it. (called in StepRTB.cs FindLinks)
}
// if the custom editor is visible, make it follow the cell being edited