mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 20:04:37 +00:00
Fixed #1193 FLA export - DefineEditText position
This commit is contained in:
@@ -4362,7 +4362,9 @@ public class XFLConverter {
|
||||
writer.writeAttribute("variableName", det.variableName);
|
||||
}
|
||||
writer.writeStartElement("matrix");
|
||||
convertMatrix(matrix, writer);
|
||||
Matrix matrix2 = new Matrix(matrix);
|
||||
matrix2 = matrix2.preConcatenate(Matrix.getTranslateInstance(det.bounds.Xmin + 40, det.bounds.Ymin + 40)); // 40 is magic value, I don't know why but it's there
|
||||
convertMatrix(matrix2.toMATRIX(), writer);
|
||||
writer.writeEndElement();
|
||||
writer.writeStartElement("textRuns");
|
||||
String txt = "";
|
||||
|
||||
Reference in New Issue
Block a user