Browse Source

Merge pull request #298 from PixiEditor/quickfill

0.1.6.7 dev
Krzysztof Krysiński 3 years ago
parent
commit
15cd07faa4

+ 4 - 3
PixiEditor/Models/Tools/BitmapOperationTool.cs

@@ -67,10 +67,11 @@ namespace PixiEditor.Models.Tools
                 finalRect = SKRectI.Create(doc.ActiveLayer.OffsetX, doc.ActiveLayer.OffsetY, doc.ActiveLayer.Width, doc.ActiveLayer.Height);
             }
 
-            if (UseDocumentRectForUndo)
-            {
+            //Commented, because rect based undo is still a little buggy
+            //if (UseDocumentRectForUndo)
+            //{
                 finalRect = SKRectI.Create(0, 0, doc.Width, doc.Height);
-            }
+            //}
 
             _change = new StorageBasedChange(doc, new[] { new LayerChunk(doc.ActiveLayer, finalRect) });
         }

+ 2 - 2
PixiEditor/Properties/AssemblyInfo.cs

@@ -50,5 +50,5 @@ using System.Windows;
 // You can specify all the values or you can default the Build and Revision Numbers
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("0.1.6.6")]
-[assembly: AssemblyFileVersion("0.1.6.6")]
+[assembly: AssemblyVersion("0.1.6.7")]
+[assembly: AssemblyFileVersion("0.1.6.7")]