From ae2e75920059ca873cdbf81adb51b4502554a513 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 5 Jun 2023 15:21:05 -0400 Subject: [PATCH] Changes maximize toggle to not hide --- src/plus/webviews/graph/registration.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plus/webviews/graph/registration.ts b/src/plus/webviews/graph/registration.ts index 56b8fc6..a409468 100644 --- a/src/plus/webviews/graph/registration.ts +++ b/src/plus/webviews/graph/registration.ts @@ -88,7 +88,6 @@ export function registerGraphWebviewCommands(container: Container, webview: Webv registerCommand(Commands.ToggleMaximizedGraph, (...args: any[]) => { if (getContext('gitlens:webviewView:graph:visible')) { void executeCoreCommand('workbench.action.toggleMaximizedPanel'); - void executeCoreCommand('workbench.action.closePanel'); } else { void executeCommand(Commands.ShowGraphView, ...args); void executeCoreCommand('workbench.action.toggleMaximizedPanel');