Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Components/SceneTree/SceneTreeSortable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export const SceneTreeSortable = forwardRef<SceneTreeSortableHandle, SceneTreeSo
ref={outerDivRef}
style={{
position: 'absolute',
top: uiState.isGuiMode ? '-66px' : '0px',
top: uiState.isGuiMode ? '0px' : '0px',
right: 0,
height,
display: 'flex',
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/ModelViewPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ useEffect(() => {
<div
style={{
position: "absolute",
top: 66,
top: 0,
right: 0,
zIndex: 1002,
height: canvasHeight, // full canvas height
Expand Down
2 changes: 1 addition & 1 deletion src/state/ViewerState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class ViewerState {

this.videoRecorderPreserveAspectRatio = true
this.user_uuid = ''
this.backgroundColor = new Color(0.7, 0.7, 0.7)
this.backgroundColor = new Color(0.12, 0.12, 0.12)
this.backgroundImage = null
this.useTexture = false
this.skyTextureIndex = 0
Expand Down