MiRCARTToolFill.py: set qualifying colour from current cell.

This commit is contained in:
Lucio Andrés Illanes Albornoz 2018-01-11 01:56:28 +01:00
parent bb243c7556
commit 2f85fa8cd1
1 changed files with 2 additions and 1 deletions

View File

@ -32,13 +32,14 @@ class MiRCARTToolFill(MiRCARTTool):
# onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc): XXX
def onMouseEvent(self, event, atPoint, brushColours, brushSize, isDragging, isLeftDown, isRightDown, dispatchFn, eventDc):
pointStack = [list(atPoint)]
testColour = self.parentCanvas.canvasMap[atPoint[1]][atPoint[0]][0][1]
if isLeftDown or isRightDown:
if isRightDown:
brushColours = [brushColours[1], brushColours[0]]
while len(pointStack) > 0:
point = pointStack.pop()
pointCell = self.parentCanvas.canvasMap[point[1]][point[0]]
if pointCell[0][1] == brushColours[1]:
if pointCell[0][1] == testColour:
dispatchFn(eventDc, False, [point.copy(), \
[brushColours[0], brushColours[0]], 0, " "])
if point[0] > 0: