From 19546e155f494b94e7e48607434211eb99e8b6a6 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Tue, 29 Oct 2024 11:28:48 -0700 Subject: [PATCH] chore: Run formatter. --- core/bubbles/textinput_bubble.ts | 4 ++-- core/icons/comment_icon.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/bubbles/textinput_bubble.ts b/core/bubbles/textinput_bubble.ts index ce340f700f..5b5278b91f 100644 --- a/core/bubbles/textinput_bubble.ts +++ b/core/bubbles/textinput_bubble.ts @@ -62,7 +62,7 @@ export class TextInputBubble extends Bubble { 45 + Bubble.DOUBLE_BORDER, 20 + Bubble.DOUBLE_BORDER, ); - + private editable = true; /** @@ -107,7 +107,7 @@ export class TextInputBubble extends Bubble { this.textArea.setAttribute('readonly', ''); } } - + /** Returns whether or not the text in the bubble is editable. */ isEditable(): boolean { return this.editable; diff --git a/core/icons/comment_icon.ts b/core/icons/comment_icon.ts index 62f9e5d7a3..65d75ea7f4 100644 --- a/core/icons/comment_icon.ts +++ b/core/icons/comment_icon.ts @@ -304,7 +304,7 @@ export class CommentIcon extends Icon implements IHasBubble, ISerializable { this.createBubble(); this.textInputBubble?.setEditable(false); } - + protected createBubble() { this.textInputBubble = new TextInputBubble( this.sourceBlock.workspace as WorkspaceSvg,