mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Styling Updates
- Moved Inpaint Replace higher in the options panel - Fixed inpaint replace switch getting cut off slightly by padding a bit.
This commit is contained in:
parent
89ad2e55d9
commit
6679e5be69
@ -55,14 +55,13 @@ export default function InpaintingSettings() {
|
|||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<BoundingBoxSettings />
|
<div
|
||||||
<IAIButton
|
style={{
|
||||||
label="Clear Brush History"
|
display: 'flex',
|
||||||
onClick={handleClearBrushHistory}
|
alignItems: 'center',
|
||||||
tooltip="Clears brush stroke history"
|
padding: '0 1rem 0 0.2rem',
|
||||||
disabled={futureLines.length > 0 || pastLines.length > 0 ? false : true}
|
}}
|
||||||
/>
|
>
|
||||||
<div style={{ display: 'flex', alignItems: 'center' }}>
|
|
||||||
<IAINumberInput
|
<IAINumberInput
|
||||||
label="Inpaint Replace"
|
label="Inpaint Replace"
|
||||||
value={inpaintReplace}
|
value={inpaintReplace}
|
||||||
@ -84,6 +83,13 @@ export default function InpaintingSettings() {
|
|||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<BoundingBoxSettings />
|
||||||
|
<IAIButton
|
||||||
|
label="Clear Brush History"
|
||||||
|
onClick={handleClearBrushHistory}
|
||||||
|
tooltip="Clears brush stroke history"
|
||||||
|
disabled={futureLines.length > 0 || pastLines.length > 0 ? false : true}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user