From ed8ec36136efd61fe277f943a686947f6ae846e4 Mon Sep 17 00:00:00 2001 From: teo0781 <61596661+teo0781@users.noreply.github.com> Date: Fri, 11 Nov 2022 23:48:39 +0100 Subject: [PATCH] Fix speechbubble (#326) --- commands/image-editing/speechbubble.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/image-editing/speechbubble.js b/commands/image-editing/speechbubble.js index 07859da..4e3d40c 100644 --- a/commands/image-editing/speechbubble.js +++ b/commands/image-editing/speechbubble.js @@ -7,8 +7,8 @@ class SpeechBubbleCommand extends ImageCommand { gravity: "north", resize: true, yscale: 0.2, - alpha: this.options.alpha, - flip: this.options.flip + alpha: this.options.alpha ? true : false, + flip: this.options.flip ? true : false }; }