0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-06 03:51:21 -05:00

🐛 Fix pasting adds a newline (#5763)

This commit is contained in:
Aitor Moreno 2025-02-04 15:54:17 +01:00 committed by GitHub
parent b913c75c41
commit 1f2e36774e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1066,9 +1066,15 @@ export class SelectionController extends EventTarget {
}
const collapseNode = fragment.lastElementChild.lastElementChild.firstChild
if (this.isParagraphStart) {
const a = fragment.lastElementChild;
const b = this.focusParagraph;
this.focusParagraph.before(fragment);
mergeParagraphs(a, b);
} else if (this.isParagraphEnd) {
const a = this.focusParagraph;
const b = fragment.firstElementChild;
this.focusParagraph.after(fragment);
mergeParagraphs(a, b);
} else {
const newParagraph = splitParagraph(
this.focusParagraph,