Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skier233 committed Feb 12, 2025
1 parent 2e0e349 commit c9a2ebb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions graphql/schema/types/config.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,6 @@ type ConfigInterfaceResult {
"Show scene scrubber by default"
showScrubber: Boolean

"Show scene range markers by default"
showRangeMarkers: Boolean

"Maximum duration (in seconds) in which a scene video will loop in the scene player"
maximumLoopDuration: Int
"True if we should not auto-open a browser window on startup"
Expand Down
3 changes: 1 addition & 2 deletions ui/v2.5/src/components/ScenePlayer/ScenePlayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -718,8 +718,7 @@ export const ScenePlayer: React.FC<IScenePlayerProps> = ({
await markers.findColors(uniqueTagNames);

const showRangeTags =
!ScreenUtils.isMobile() &&
(uiConfig?.showRangeMarkers ?? true);
!ScreenUtils.isMobile() && (uiConfig?.showRangeMarkers ?? true);
const timestampMarkers: IMarker[] = [];
const rangeMarkers: IMarker[] = [];

Expand Down

0 comments on commit c9a2ebb

Please sign in to comment.