Project conflict indicators in outline panel
* OutlinePanel has a badge showing the number of conflicting projects * Each project list item gets a highlight if it has conflicts * Refactored Popover to prepare to merge it with tooltips
This commit is contained in:
parent
e50daa3ba7
commit
72d40bf204
8 changed files with 57 additions and 39 deletions
|
@ -134,10 +134,11 @@ const SnapshotEditor: React.FC<{paneId: string}> = (props) => {
|
|||
<Overlay>
|
||||
<Tools>
|
||||
<ToolbarIconButton
|
||||
icon={<IoCameraReverseOutline />}
|
||||
label="Refresh Snapshot"
|
||||
title="Refresh Snapshot"
|
||||
onClick={createSnapshot}
|
||||
></ToolbarIconButton>
|
||||
>
|
||||
<IoCameraReverseOutline />
|
||||
</ToolbarIconButton>
|
||||
</Tools>
|
||||
</Overlay>
|
||||
|
||||
|
|
|
@ -26,9 +26,10 @@ const Toolbar: VFC = () => {
|
|||
onClick={() => {
|
||||
studio.createPane('snapshotEditor')
|
||||
}}
|
||||
icon={<IoCameraOutline />}
|
||||
label="Create snapshot"
|
||||
/>
|
||||
title="Create snapshot"
|
||||
>
|
||||
<IoCameraOutline />
|
||||
</ToolbarIconButton>
|
||||
<TransformControlsModeSelect
|
||||
value={transformControlsMode}
|
||||
onChange={(value) =>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue