mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
parent
dd8e465304
commit
477cce2ed6
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ export const wrapText = (
|
|||
const currentWordWidth = getTextWidth(words[index], font);
|
||||
|
||||
// Start breaking longer words exceeding max width
|
||||
if (currentWordWidth > maxWidth) {
|
||||
if (currentWordWidth >= maxWidth) {
|
||||
// push current line since the current word exceeds the max width
|
||||
// so will be appended in next line
|
||||
if (currentLine) {
|
||||
|
|
Loading…
Add table
Reference in a new issue