Skip to content

Commit

Permalink
change the toggle buttons to on
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegMoshkovich committed Oct 7, 2023
1 parent 5271929 commit 1548937
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Components/ControlsGroup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@ export default function OperationsGroup({fileOpen}) {
title='Search'
icon={<SearchIcon className='icon-share' color='secondary'/>}
placement='bottom'
selected={false}
selected={true}
onClick={toggleIsSearchVisible}
/>
<TooltipIconButton
title='Navigation'
icon={<TreeIcon className='icon-share' color='secondary' style={{width: '17px', height: '17px'}}/>}
placement='bottom'
aboutInfo={false}
selected={false}
selected={true}
onClick={toggleIsNavigationVisible}
/>
<TooltipIconButton
title='Project History'
icon={<HistoryIcon className='icon-share' color='secondary'/>}
placement='bottom'
selected={false}
selected={true}
onClick={toggleIsNavigationVisible}
/>
</ButtonGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Components/OpenModelControl.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function OpenModelControl({fileOpen}) {
onClick={() => setIsDialogDisplayed(true)}
icon={<CreateNewFolderIcon className='icon-share' color='secondary'/>}
placement={'bottom'}
selected={isDialogDisplayed}
selected={true}
dataTestId='open-ifc'
/>
{isDialogDisplayed &&
Expand Down

0 comments on commit 1548937

Please sign in to comment.