Skip to content

Commit

Permalink
Fix not-found-text-blok bug
Browse files Browse the repository at this point in the history
  • Loading branch information
RobolabGs2 committed Jan 16, 2024
1 parent b9a3c2a commit 6d3e0b3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@

- Не отображались спрайты для управления эффектами после переключения режима редактирования (перемещение/обрезка). Теперь они отображаются всегда.
- При удалении блока/фрейма текущим выбирается ближайший в списке, а не первый.
- Исправлено падение при попытке открыть фрейм без текстовых блоков.

## [0.2.6] - 2023-10-29

Expand Down
20 changes: 19 additions & 1 deletion src/lib/memaker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,25 @@ export class Memaker {
// temporary crutch
if (newBlock.content.type !== 'text') {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
newBlock = this.activeFrame.blocks.find((b) => b.content.type === 'text')!;
newBlock = this.activeFrame.blocks.find((b) => b.content.type === 'text') || {
id: this.blockIdGenerator.generate(),
container: {
type: 'global',
value: {
maxWidth: 0.96,
maxHeight: 0.4,
minHeight: 0
}
},
content: {
type: 'text',
value: {
text: '',
style: defaultStyle
}
},
effects: []
};
}
newBlock = deepCopy(newBlock);
newBlock.id = this.blockIdGenerator.generate();
Expand Down

0 comments on commit 6d3e0b3

Please sign in to comment.