From b7c34f4233d798bd9d300a47289a8138ed049951 Mon Sep 17 00:00:00 2001 From: Emmanouil Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Fri, 6 Dec 2024 04:11:05 +0200 Subject: [PATCH] Fix pencil/eraser/shading previews turning white for a brief moment when changing image brushes --- src/Tools/BaseDraw.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Tools/BaseDraw.gd b/src/Tools/BaseDraw.gd index e01088a0a..14e65badb 100644 --- a/src/Tools/BaseDraw.gd +++ b/src/Tools/BaseDraw.gd @@ -212,6 +212,8 @@ func update_brush() -> void: $DensityValueSlider.visible = _brush.type not in IMAGE_BRUSHES $ColorInterpolation.visible = _brush.type in IMAGE_BRUSHES $RotationOptions.visible = _brush.type in IMAGE_BRUSHES + var canvas_indicators := Global.canvas.indicators + canvas_indicators.queue_redraw() func update_random_image() -> void: