We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41cdd51 commit 2ab5e3fCopy full SHA for 2ab5e3f
src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.ts
@@ -442,14 +442,9 @@ export class MergeEditorModel extends EditorModel {
442
}
443
444
445
- if (markInputAsHandled !== false) {
446
- if (markInputAsHandled === true || markInputAsHandled === 1) {
447
- existingState.handledInput1.set(true, transaction);
448
- }
449
- if (markInputAsHandled === true || markInputAsHandled === 2) {
450
- existingState.handledInput2.set(true, transaction);
451
452
+ // always set conflict as handled
+ existingState.handledInput1.set(true, transaction);
+ existingState.handledInput2.set(true, transaction);
453
454
455
public resetDirtyConflictsToBase(): void {
0 commit comments