Hi Intech crew,
I noticed some strange behavior after the last update to version 1.6.9 of Grid Editor
Spaces are being trimmed in the code editor within a string when commiting changes
it seems to happen when using the ‘%’ character.
Examples:
string.format(“%s %02x %02x %02x”, a,b,c,d)
Changes to:
string.format(“%s%02x%02x%02x”, a,b,c,d)
x = “loading 100% completed”
Changes to:
x = “loading 100%completed”
I dont think this should be happening
Is this fixable?
Thanks