Set the tabel font to 10 point

Remove the override for the transition type 5
Modiffied code that determined the font size for inserted transitions to get the correct value.
This commit is contained in:
Rich 2018-01-19 17:14:55 +00:00
parent 849b7230f2
commit 05f04b75ef
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -1338,7 +1338,7 @@ namespace Volian.Controls.Library
{
get
{
Match match = Regex.Match(Rtf, @"\\fs[0-9]*");
Match match = Regex.Match(Rtf, @"\\fs[0-9]+"); // B2018-012 Make sure that there is at least 1 digit
return match.Value;
}
}