quick gizmo homescreen fix (#2509)
* quick gizmo homescreen fix * better fix
This commit is contained in:
@ -24,6 +24,7 @@ import { ModelingSidebar } from 'components/ModelingSidebar/ModelingSidebar'
|
||||
import { LowerRightControls } from 'components/LowerRightControls'
|
||||
import ModalContainer from 'react-modal-promise'
|
||||
import useHotkeyWrapper from 'lib/hotkeyWrapper'
|
||||
import Gizmo from 'components/Gizmo'
|
||||
|
||||
export function App() {
|
||||
useRefreshSettings(paths.FILE + 'SETTINGS')
|
||||
@ -128,7 +129,9 @@ export function App() {
|
||||
<ModelingSidebar paneOpacity={paneOpacity} />
|
||||
<Stream className="absolute inset-0 z-0" />
|
||||
{/* <CamToggle /> */}
|
||||
<LowerRightControls />
|
||||
<LowerRightControls>
|
||||
<Gizmo />
|
||||
</LowerRightControls>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { APP_VERSION } from 'routes/Settings'
|
||||
import { CustomIcon } from 'components/CustomIcon'
|
||||
import Tooltip from 'components/Tooltip'
|
||||
import Gizmo from 'components/Gizmo'
|
||||
import { paths } from 'lib/paths'
|
||||
import { NetworkHealthIndicator } from 'components/NetworkHealthIndicator'
|
||||
import { HelpMenu } from './HelpMenu'
|
||||
@ -17,7 +16,6 @@ export function LowerRightControls(props: React.PropsWithChildren) {
|
||||
return (
|
||||
<section className="fixed bottom-2 right-2 flex flex-col items-end gap-3">
|
||||
{props.children}
|
||||
<Gizmo />
|
||||
<menu className="flex items-center justify-end gap-3">
|
||||
<a
|
||||
href={`https://github.com/KittyCAD/modeling-app/releases/tag/v${APP_VERSION}`}
|
||||
|
Reference in New Issue
Block a user