renaming + bug fixing (0 considered as false …)

This commit is contained in:
Vince 2012-09-16 16:42:21 +02:00
parent b75640c6f3
commit e519eb1feb

View File

@ -14,10 +14,10 @@
ns.BaseTool.prototype.moveUnactiveToolAt = function(col, row, color, frame, overlay) {
if (overlay.containsPixel(col, row)) {
if (this.previouslyHighlightedPixelCol &&
this.previouslyHighlightedPixelRow &&
(this.previouslyHighlightedPixelRow != row ||
this.previouslyHighlightedPixelCol != col)) {
if (!isNaN(this.highlightedPixelCol) &&
!isNaN(this.highlightedPixelRow) &&
(this.highlightedPixelRow != row ||
this.highlightedPixelCol != col)) {
// Clean the previously highlighted pixel:
overlay.clear();
@ -26,8 +26,8 @@
// Show the current pixel targeted by the tool:
overlay.setPixel(col, row, Constants.TOOL_TARGET_HIGHLIGHT_COLOR);
this.previouslyHighlightedPixelCol = col;
this.previouslyHighlightedPixelRow = row;
this.highlightedPixelCol = col;
this.highlightedPixelRow = row;
}
};