From 54134932afc8f4632b21fdb85cae3545c66fc15c Mon Sep 17 00:00:00 2001 From: Lehonti Ramos Date: Wed, 9 Aug 2023 18:36:49 +0200 Subject: [PATCH] Made member private to address compiler warning --- Pinta.Tools/Tools/GradientTool.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pinta.Tools/Tools/GradientTool.cs b/Pinta.Tools/Tools/GradientTool.cs index a3bb9f14f..d496e05cf 100644 --- a/Pinta.Tools/Tools/GradientTool.cs +++ b/Pinta.Tools/Tools/GradientTool.cs @@ -35,7 +35,7 @@ public sealed class GradientTool : BaseTool private readonly IPaletteService palette; PointD startpoint; bool tracking; - protected ImageSurface? undo_surface; + private ImageSurface? undo_surface; MouseButton button; private const string GRADIENT_TYPE_SETTING = "gradient-type";