Browse Source

Opens welcome/settings in active tab group

main
Eric Amodio 1 year ago
parent
commit
7176959031
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/webviews/settings/registration.ts
  2. +1
    -1
      src/webviews/welcome/registration.ts

+ 1
- 1
src/webviews/settings/registration.ts View File

@ -15,7 +15,7 @@ export function registerSettingsWebviewPanel(controller: WebviewsController) {
contextKeyPrefix: `gitlens:webview:settings`,
trackingFeature: 'settingsWebview',
plusFeature: false,
column: ViewColumn.Beside,
column: ViewColumn.Active,
webviewHostOptions: {
retainContextWhenHidden: false,
enableFindWidget: true,

+ 1
- 1
src/webviews/welcome/registration.ts View File

@ -14,7 +14,7 @@ export function registerWelcomeWebviewPanel(controller: WebviewsController) {
contextKeyPrefix: `gitlens:webview:welcome`,
trackingFeature: 'welcomeWebview',
plusFeature: false,
column: ViewColumn.Beside,
column: ViewColumn.Active,
webviewHostOptions: {
retainContextWhenHidden: false,
enableFindWidget: true,

Loading…
Cancel
Save