You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found an Issue when i build a new template from image (on Design) and Save.
When I Load this template, the page border references saves the X,Y Coordinates wrong.
I think it can be the Float property.
In en-US language float is (ex.) 10.00.
In pt-Br language float is (ex.) 10,00.
I can fix this issue adding the following code in Program.cs >> Main() thread:
Hmmm.... That is interesting... Do you have a patch you can submit? I would be more than happy to merge as we are also looking to leverage this base platform in other regions.
I found an Issue when i build a new template from image (on Design) and Save.
When I Load this template, the page border references saves the X,Y Coordinates wrong.
I think it can be the Float property.
In en-US language float is (ex.) 10.00.
In pt-Br language float is (ex.) 10,00.
I can fix this issue adding the following code in Program.cs >> Main() thread:
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
System.Globalization.CultureInfo cultureInfo = new System.Globalization.CultureInfo("en-US");
Application.CurrentCulture = cultureInfo;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain());
}
The text was updated successfully, but these errors were encountered: