mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat(ui): do not fill brush preview when drawing
This commit is contained in:
parent
bee3fa339d
commit
37ac7d8ed5
@ -74,6 +74,7 @@ const useStageRenderer = (
|
||||
const tool = useStore($tool);
|
||||
const lastCursorPos = useStore($lastCursorPos);
|
||||
const lastMouseDownPos = useStore($lastMouseDownPos);
|
||||
const isDrawing = useStore($isDrawing);
|
||||
const brushColor = useAppSelector(selectBrushColor);
|
||||
const selectedLayer = useAppSelector(selectSelectedLayer);
|
||||
const layerIds = useMemo(() => state.layers.map((l) => l.id), [state.layers]);
|
||||
@ -249,7 +250,8 @@ const useStageRenderer = (
|
||||
state.globalMaskLayerOpacity,
|
||||
lastCursorPos,
|
||||
lastMouseDownPos,
|
||||
state.brushSize
|
||||
state.brushSize,
|
||||
isDrawing
|
||||
);
|
||||
}, [
|
||||
asPreview,
|
||||
@ -262,6 +264,7 @@ const useStageRenderer = (
|
||||
lastMouseDownPos,
|
||||
state.brushSize,
|
||||
renderers,
|
||||
isDrawing,
|
||||
]);
|
||||
|
||||
useLayoutEffect(() => {
|
||||
|
@ -88,7 +88,8 @@ export const renderToolPreview = (
|
||||
globalMaskLayerOpacity: number,
|
||||
cursorPos: Vector2d | null,
|
||||
lastMouseDownPos: Vector2d | null,
|
||||
brushSize: number
|
||||
brushSize: number,
|
||||
isDrawing: boolean
|
||||
): void => {
|
||||
const layerCount = stage.find(selectRenderableLayers).length;
|
||||
// Update the stage's pointer style
|
||||
@ -133,7 +134,7 @@ export const renderToolPreview = (
|
||||
x: cursorPos.x,
|
||||
y: cursorPos.y,
|
||||
radius: brushSize / 2,
|
||||
fill: rgbaColorToString(brushColor),
|
||||
fill: isDrawing ? '' : rgbaColorToString(brushColor),
|
||||
globalCompositeOperation: tool === 'brush' ? 'source-over' : 'destination-out',
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user