mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-01 03:01:13 -04:00
fix(ui): process buttons display on canvas beta layout
This commit is contained in:
@@ -22,7 +22,7 @@ export default function UnifiedCanvasProcessingButtons() {
|
||||
shouldPinParametersPanel && dispatch(requestCanvasRescale());
|
||||
};
|
||||
|
||||
return (
|
||||
return !shouldPinParametersPanel ? (
|
||||
<Flex flexDirection="column" gap={2}>
|
||||
<IAIIconButton
|
||||
tooltip={`${t('parameters.showOptionsPanel')} (O)`}
|
||||
@@ -39,5 +39,5 @@ export default function UnifiedCanvasProcessingButtons() {
|
||||
<CancelButton width="100%" height="40px" btnGroupWidth="100%" />
|
||||
</Flex>
|
||||
</Flex>
|
||||
);
|
||||
) : null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user