Skip to content

Commit

Permalink
re-order the help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegMoshkovich committed Oct 23, 2023
1 parent a858dde commit c1caaf4
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions src/Components/HelpControl.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import Dialog from './Dialog'
import {TooltipIconButton} from './Buttons'
import AutoFixHighIcon from '@mui/icons-material/AutoFixHigh'
import CropOutlinedIcon from '@mui/icons-material/CropOutlined'
import CreateNewFolderOutlinedIcon from '@mui/icons-material/CreateNewFolderOutlined'
import ChatOutlinedIcon from '@mui/icons-material/ChatOutlined'
import HelpOutlineIcon from '@mui/icons-material/HelpOutline'
import HistoryIcon from '@mui/icons-material/History'
Expand Down Expand Up @@ -85,6 +86,18 @@ const HelpList = () => {
marginLeft: '10px',
}}
>
<HelpComponent
icon={<CreateNewFolderOutlinedIcon className='icon-share' color='secondary'/>}
description={'Open IFC projects from GITHUB or local drive'}
/>
<HelpComponent
icon={<TreeIcon className='icon-share' color='secondary'/>}
description={'Navigate the project using element hierarchies'}
/>
<HelpComponent
icon={<HistoryIcon className='icon-share' color='secondary'/>}
description={'Access project version history'}
/>
<HelpComponent
icon={<ShareIcon className='icon-share' color='secondary'/>}
description={'Share sectioned portions of the project'}
Expand All @@ -97,14 +110,8 @@ const HelpList = () => {
icon={<CropOutlinedIcon className='icon-share' color='secondary'/>}
description={'Study the project using standard sections'}
/>
<HelpComponent
icon={<TreeIcon className='icon-share' color='secondary'/>}
description={'Navigate the project using element hierarchies'}
/>
<HelpComponent
icon={<HistoryIcon className='icon-share' color='secondary'/>}
description={'Access project version history'}
/>


<HelpComponent
icon={<AutoFixHighIcon className='icon-share' color='secondary'/>}
description={'Generate renderings of the project using text prompts'}
Expand Down

0 comments on commit c1caaf4

Please sign in to comment.