Explorar o código

Fixed mocked single pixel tool

CPKreuz %!s(int64=4) %!d(string=hai) anos
pai
achega
6ff4d8c871

+ 3 - 1
PixiEditorTests/ModelsTests/ControllersTests/MockedSinglePixelPenTool.cs

@@ -9,9 +9,11 @@ namespace PixiEditorTests.ModelsTests.ControllersTests
 {
     public class MockedSinglePixelPenTool : BitmapOperationTool
     {
+        public override string Tooltip => "";
+    
         public override LayerChange[] Use(Layer layer, List<Coordinates> mouseMove, Color color)
         {
             return Only(BitmapPixelChanges.FromSingleColoredArray(new[] { mouseMove[0] }, color), layer.LayerGuid);
         }
     }
-}
+}