소스 검색

Fixes view layout default

main
Eric Amodio 4 년 전
부모
커밋
1187158356
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +6
    -6
      src/commands/setViewsLayout.ts

+ 6
- 6
src/commands/setViewsLayout.ts 파일 보기

@ -25,16 +25,16 @@ export class SetViewsLayoutCommand extends Command {
const pick = await window.showQuickPick(
[
{
label: 'GitLens Layout',
label: 'Source Control Layout',
description: '(default)',
detail: 'Shows all the views together on the GitLens side bar',
layout: ViewsLayout.GitLens,
detail: 'Shows all the views together on the Source Control side bar',
layout: ViewsLayout.SourceControl,
},
{
label: 'Source Control Layout',
label: 'GitLens Layout',
description: '',
detail: 'Shows all the views together on the Source Control side bar',
layout: ViewsLayout.SourceControl,
detail: 'Shows all the views together on the GitLens side bar',
layout: ViewsLayout.GitLens,
},
],
{

불러오는 중...
취소
저장