Tiny optimization; don't set info.y twice.

pull/1/head
David Schnur 13 years ago
parent bceb4bfca2
commit 606c02b842

@ -314,15 +314,13 @@ browser, but needs to redraw with canvas text when exporting as an image.
var info = this.getTextInfo(layer, text, font, angle); var info = this.getTextInfo(layer, text, font, angle);
info.x = x;
info.y = y;
// Mark the text for inclusion in the next render pass // Mark the text for inclusion in the next render pass
info.active = true; info.active = true;
// Save horizontal alignment for later; we'll apply it per-line // Save horizontal alignment for later; we'll apply it per-line
info.x = x;
info.halign = halign; info.halign = halign;
// Tweak the initial y-position to match vertical alignment // Tweak the initial y-position to match vertical alignment
@ -331,6 +329,8 @@ browser, but needs to redraw with canvas text when exporting as an image.
info.y = y - info.height / 2; info.y = y - info.height / 2;
} else if (valign == "bottom") { } else if (valign == "bottom") {
info.y = y - info.height; info.y = y - info.height;
} else {
info.y = y;
} }
}; };
} }

Loading…
Cancel
Save