瀏覽代碼

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,
},
],
{

Loading…
取消
儲存