From 9e2cd079528bea00be8aabb16df1323683bb382d Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Thu, 24 Aug 2023 22:38:58 +0200 Subject: [PATCH] Use text instead of icon for moved code compare button --- .../browser/widget/diffEditorWidget2/movedBlocksLines.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vs/editor/browser/widget/diffEditorWidget2/movedBlocksLines.ts b/src/vs/editor/browser/widget/diffEditorWidget2/movedBlocksLines.ts index 6a5316decba..f52c55e389f 100644 --- a/src/vs/editor/browser/widget/diffEditorWidget2/movedBlocksLines.ts +++ b/src/vs/editor/browser/widget/diffEditorWidget2/movedBlocksLines.ts @@ -325,6 +325,7 @@ class MovedBlockOverlayWidget extends ViewZoneOverlayWidget { const isActive = this._diffModel.movedTextToCompare.read(reader) === _move; actionCompare.checked = isActive; })); - actionBar.push(actionCompare, { icon: true, label: false }); + + actionBar.push(actionCompare, { icon: false, label: true }); } }