mirror of
https://github.com/invoke-ai/InvokeAI
synced 2025-07-27 00:23:21 +00:00
feat(ui): show progress toggle on control layers toolbar
This commit is contained in:
parent
d20695260d
commit
5ca794b94f
1 changed files with 4 additions and 1 deletions
|
@ -4,6 +4,7 @@ import { BrushSize } from 'features/controlLayers/components/BrushSize';
|
|||
import ControlLayersSettingsPopover from 'features/controlLayers/components/ControlLayersSettingsPopover';
|
||||
import { ToolChooser } from 'features/controlLayers/components/ToolChooser';
|
||||
import { UndoRedoButtonGroup } from 'features/controlLayers/components/UndoRedoButtonGroup';
|
||||
import { ToggleProgressButton } from 'features/gallery/components/ImageViewer/ToggleProgressButton';
|
||||
import { ViewerToggleMenu } from 'features/gallery/components/ImageViewer/ViewerToggleMenu';
|
||||
import { memo } from 'react';
|
||||
|
||||
|
@ -11,7 +12,9 @@ export const ControlLayersToolbar = memo(() => {
|
|||
return (
|
||||
<Flex w="full" gap={2}>
|
||||
<Flex flex={1} justifyContent="center">
|
||||
<Flex gap={2} marginInlineEnd="auto" />
|
||||
<Flex gap={2} marginInlineEnd="auto">
|
||||
<ToggleProgressButton />
|
||||
</Flex>
|
||||
</Flex>
|
||||
<Flex flex={1} gap={2} justifyContent="center">
|
||||
<BrushSize />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue