brings back interrogate reticle
This commit is contained in:
parent
5872f2c3a4
commit
b30f7f23a9
1 changed files with 17 additions and 5 deletions
|
@ -42,11 +42,23 @@ const interrogateTool = () =>
|
||||||
|
|
||||||
state.mousemovecb = (evn) => {
|
state.mousemovecb = (evn) => {
|
||||||
state.erasePrevReticle();
|
state.erasePrevReticle();
|
||||||
state.erasePrevReticle = _reticle_draw(evn, state, "Interrogate", {
|
state.erasePrevReticle = _tool._reticle_draw(
|
||||||
toolTextStyle: "#AFA5",
|
getBoundingBox(
|
||||||
|
evn.x,
|
||||||
|
evn.y,
|
||||||
|
state.cursorSize,
|
||||||
|
state.cursorSize,
|
||||||
|
state.snapToGrid && basePixelCount
|
||||||
|
),
|
||||||
|
"Interrogate",
|
||||||
|
{
|
||||||
|
w: stableDiffusionData.width,
|
||||||
|
h: stableDiffusionData.height,
|
||||||
|
},
|
||||||
|
{
|
||||||
sizeTextStyle: "#AFA5",
|
sizeTextStyle: "#AFA5",
|
||||||
reticleStyle: "#AFAF",
|
}
|
||||||
});
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
state.redraw = () => {
|
state.redraw = () => {
|
||||||
|
|
Loading…
Reference in a new issue