From 11871583568095205a0dd177cfdf1a58ad5738f6 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sun, 20 Sep 2020 00:43:32 -0400 Subject: [PATCH] Fixes view layout default --- src/commands/setViewsLayout.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/commands/setViewsLayout.ts b/src/commands/setViewsLayout.ts index bd740ee..711a650 100644 --- a/src/commands/setViewsLayout.ts +++ b/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, }, ], {