From c7f238ff19477c383eb08ef24590df0c70c9d6b0 Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Fri, 15 Oct 2021 15:49:23 +0300 Subject: [PATCH] Don't show the brush color from option in the Shading tool --- src/Tools/Shading.gd | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Tools/Shading.gd b/src/Tools/Shading.gd index b77117716..671db4b23 100644 --- a/src/Tools/Shading.gd +++ b/src/Tools/Shading.gd @@ -253,3 +253,8 @@ func _draw_brush_image(image : Image, src_rect: Rect2, dst: Vector2) -> void: var pos := Vector2(xx, yy) + dst - src_rect.position _set_pixel(pos, true) image.unlock() + + +func update_brush() -> void: + .update_brush() + $ColorInterpolation.visible = false