Revert "Fix text resizing bug (#3327)" (#3332)

This reverts commit 0e912fe0f2.

(The fix is more to do with a CSS regression instead of a JS fix.)


### Change Type

<!--  Please select a 'Scope' label ️ -->

- [x] `sdk` — Changes the tldraw SDK
- [ ] `dotcom` — Changes the tldraw.com web app
- [ ] `docs` — Changes to the documentation, examples, or templates.
- [ ] `vs code` — Changes to the vscode plugin
- [ ] `internal` — Does not affect user-facing stuff

<!--  Please select a 'Type' label ️ -->

- [x] `bugfix` — Bug fix
- [ ] `feature` — New feature
- [ ] `improvement` — Improving existing features
- [ ] `chore` — Updating dependencies, other boring stuff
- [ ] `galaxy brain` — Architectural changes
- [ ] `tests` — Changes to any test code
- [ ] `tools` — Changes to infrastructure, CI, internal scripts,
debugging tools, etc.
- [ ] `dunno` — I don't know
pull/3051/head
Mime Čuvalo 2024-04-03 10:59:11 +01:00 zatwierdzone przez GitHub
rodzic 5557f6be5b
commit 843347bde1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -70,9 +70,6 @@ export class TextShapeUtil extends ShapeUtil<TLTextShape> {
const { width, height } = this.getMinDimensions(shape)
const transformOrigin =
align === 'start' ? 'top left' : align === 'end' ? 'top right' : 'top center'
return (
<HTMLContainer id={shape.id}>
<TextLabel
@ -90,7 +87,7 @@ export class TextShapeUtil extends ShapeUtil<TLTextShape> {
textHeight={height}
style={{
transform: `scale(${scale})`,
transformOrigin: transformOrigin,
transformOrigin: 'top left',
}}
wrap
/>