File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/vs/workbench/api/browser Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -74,12 +74,14 @@ export class MainThreadEditorTabs {
74
74
return { resource : URI . revive ( tab . resource ) , options : { override : tab . editorId } } ;
75
75
} else if ( tab . kind === TabKind . SidebySide ) {
76
76
return {
77
+ options : { override : tab . editorId } ,
77
78
primary : { resource : URI . revive ( tab . resource ) , options : { override : tab . editorId } } ,
78
79
secondary : { resource : URI . revive ( tab . additionalResourcesAndViewIds [ 1 ] . resource ) , options : { override : tab . additionalResourcesAndViewIds [ 1 ] . viewId } }
79
80
} ;
80
81
} else {
81
82
// Diff case
82
83
return {
84
+ options : { override : tab . editorId } ,
83
85
modified : { resource : URI . revive ( tab . resource ) , options : { override : tab . editorId } } ,
84
86
original : { resource : URI . revive ( tab . additionalResourcesAndViewIds [ 1 ] . resource ) , options : { override : tab . additionalResourcesAndViewIds [ 1 ] ?. viewId } }
85
87
} ;
You can’t perform that action at this time.
0 commit comments