From 3d4fdb62b4d0ca726f6430dc1aa3cf39a7671c64 Mon Sep 17 00:00:00 2001 From: David Capello Date: Wed, 30 Sep 2015 08:59:32 -0300 Subject: [PATCH] Pass opacity value to Eraser, Blur, and Jumble tools --- src/app/ui/editor/tool_loop_impl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/ui/editor/tool_loop_impl.cpp b/src/app/ui/editor/tool_loop_impl.cpp index a33d5e5fb..27094e4a4 100644 --- a/src/app/ui/editor/tool_loop_impl.cpp +++ b/src/app/ui/editor/tool_loop_impl.cpp @@ -139,7 +139,8 @@ public: // Ignore opacity for these inks if (!tools::inkHasOpacity(m_toolPref.ink()) && - m_brush->type() != kImageBrushType) { + m_brush->type() != kImageBrushType && + !m_ink->isEffect()) { m_opacity = 255; }