From 1fa0b1e1b75ee4316b7804bbe7a0aef5b0d3e8c8 Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Mon, 15 Nov 2021 02:03:05 +0200 Subject: [PATCH] Hide the "Brush colors from" option from the Eraser tool --- src/Tools/Eraser.gd | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Tools/Eraser.gd b/src/Tools/Eraser.gd index 25ae2af11..d1d209392 100644 --- a/src/Tools/Eraser.gd +++ b/src/Tools/Eraser.gd @@ -123,3 +123,8 @@ func update_config() -> void: .update_config() $Opacity/OpacitySpinBox.value = _strength * 255 $Opacity/OpacitySlider.value = _strength * 255 + + +func update_brush() -> void: + .update_brush() + $ColorInterpolation.visible = false