mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-10 02:49:57 +02:00
fix: use canvas measureText to calculate width in measureText (#6030)
* fix: use canvas measureText to calculate width in measureText * calculate multiline width correctly using canvas measure text and rename functions * set correct width when pasting in bound container * take existing value + new pasted * remove debugger :p * fix snaps
This commit is contained in:
@@ -1027,7 +1027,7 @@ describe("Test Linear Elements", () => {
|
||||
expect(getBoundTextElementPosition(container, textElement))
|
||||
.toMatchInlineSnapshot(`
|
||||
Object {
|
||||
"x": 387.5,
|
||||
"x": 387,
|
||||
"y": 70,
|
||||
}
|
||||
`);
|
||||
@@ -1086,7 +1086,7 @@ describe("Test Linear Elements", () => {
|
||||
expect(getBoundTextElementPosition(container, textElement))
|
||||
.toMatchInlineSnapshot(`
|
||||
Object {
|
||||
"x": 190.5,
|
||||
"x": 190,
|
||||
"y": 20,
|
||||
}
|
||||
`);
|
||||
|
Reference in New Issue
Block a user