From ac623167281f62c4511f539c0c39335eca1fc264 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sat, 12 Jun 2021 02:49:45 -0400 Subject: [PATCH] Fixes #1538: uses iframe rendering Removing the find widget allows iframe rendering --- CHANGELOG.md | 1 + src/webviews/rebaseEditor.ts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ae2fac..791c639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Fixed +- Fixes [#1538](https://github.com/eamodio/vscode-gitlens/issues/1538) - Wrong initial keyboard focus in interactive rebase - Fixes [#1498](https://github.com/eamodio/vscode-gitlens/issues/1498) - "Search & Compare" broken entries - Fixes [#1507](https://github.com/eamodio/vscode-gitlens/issues/1507) - Communicate git error instead of "unable to find git" - Fixes [#1512](https://github.com/eamodio/vscode-gitlens/issues/1512) - Git tag command can add an extra `-m` diff --git a/src/webviews/rebaseEditor.ts b/src/webviews/rebaseEditor.ts index 8e88ebc..f18a7b9 100644 --- a/src/webviews/rebaseEditor.ts +++ b/src/webviews/rebaseEditor.ts @@ -101,7 +101,6 @@ export class RebaseEditorProvider implements CustomTextEditorProvider, Disposabl window.registerCustomEditorProvider('gitlens.rebase', this, { supportsMultipleEditorsPerDocument: false, webviewOptions: { - enableFindWidget: true, retainContextWhenHidden: true, }, }),