mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-17 21:48:12 +00:00
XFL export if conditions about lastFillStyle/stroke fixed
This commit is contained in:
@@ -887,13 +887,13 @@ public class XFLConverter {
|
||||
}
|
||||
if (!empty) {
|
||||
currentLayer.writeStartElement("Edge");
|
||||
if (fillStyle0 > -1) {
|
||||
if (lastFillStyle0 > -1) {
|
||||
currentLayer.writeAttribute("fillStyle0", lastFillStyle0);
|
||||
}
|
||||
if (fillStyle1 > -1) {
|
||||
if (lastFillStyle1 > -1) {
|
||||
currentLayer.writeAttribute("fillStyle1", lastFillStyle1);
|
||||
}
|
||||
if (strokeStyle > -1) {
|
||||
if (lastStrokeStyle > -1) {
|
||||
currentLayer.writeAttribute("strokeStyle", lastStrokeStyle);
|
||||
}
|
||||
StringBuilder edgesSb = new StringBuilder();
|
||||
|
||||
Reference in New Issue
Block a user