summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhistory.txt4
-rw-r--r--paint.js4
2 files changed, 6 insertions, 2 deletions
diff --git a/history.txt b/history.txt
index f9b8da1..2389dc2 100755
--- a/history.txt
+++ b/history.txt
@@ -1810,3 +1810,7 @@ ______
------
* Blocks: Pipette symbol
* Paint: Pipette tool
+
+130713
+------
+* Paint: fixed pipette tool for floodfill
diff --git a/paint.js b/paint.js
index 97236af..9841557 100644
--- a/paint.js
+++ b/paint.js
@@ -62,7 +62,7 @@
// Global stuff ////////////////////////////////////////////////////////
-modules.paint = '2013-July-12';
+modules.paint = '2013-July-13';
// Declarations
@@ -424,8 +424,8 @@ PaintEditorMorph.prototype.getUserColor = function () {
event.pageY - posInDocument.y
));
color = world.getGlobalPixelColor(hand.position());
+ color.a = 255;
myself.propertiesControls.colorpicker.action(color);
- myself.paper.settings.primarycolor = color;
};
hand.processMouseDown = nop;