Remove Unnecessary debug message
Fixed logic to find external transition when attempting to delete a procedure Turn-on Table Shrinking Generically
This commit is contained in:
@@ -1068,14 +1068,14 @@ namespace Volian.Print.Library
|
||||
case TextAlignEnum.LeftBottom:
|
||||
case TextAlignEnum.RightBottom:
|
||||
hAdjust = Math.Max(0,h - (mult * HContent) )-1;
|
||||
Console.WriteLine("\"Bottom\",{0},{1},{2}", h, HContent, hAdjust);
|
||||
//Console.WriteLine("\"Bottom\",{0},{1},{2}", h, HContent, hAdjust);
|
||||
break;
|
||||
case TextAlignEnum.CenterCenter:
|
||||
case TextAlignEnum.GeneralCenter:
|
||||
case TextAlignEnum.LeftCenter:
|
||||
case TextAlignEnum.RightCenter:
|
||||
hAdjust = Math.Max(0,(h - (mult * HContent)) / 2)-1;
|
||||
Console.WriteLine("\"Middle\",{0},{1},{2}", h, HContent, hAdjust);
|
||||
//Console.WriteLine("\"Middle\",{0},{1},{2}", h, HContent, hAdjust);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Reference in New Issue
Block a user