Skip to content

Commit f664e0c

Browse files
committed
💄
1 parent e2b6dd7 commit f664e0c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/vs/workbench/browser/parts/editor/multiEditorTabsControl.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,8 +1025,6 @@ export class MultiEditorTabsControl extends EditorTabsControl {
10251025
// Apply some datatransfer types to allow for dragging the element outside of the application
10261026
this.doFillResourceDataTransfers([editor], e, isNewWindowOperation);
10271027

1028-
// Fixes https://github.com/microsoft/vscode/issues/18733
1029-
this.updateDropFeedback(tab, true, e, tabIndex);
10301028
scheduleAtNextAnimationFrame(getWindow(this.parent), () => this.updateDropFeedback(tab, false, e, tabIndex));
10311029
},
10321030

@@ -1064,9 +1062,7 @@ export class MultiEditorTabsControl extends EditorTabsControl {
10641062
}
10651063
}
10661064

1067-
if (e.dataTransfer?.dropEffect !== 'none') {
1068-
this.updateDropFeedback(tab, true, e, tabIndex);
1069-
}
1065+
this.updateDropFeedback(tab, true, e, tabIndex);
10701066
},
10711067

10721068
onDragEnd: async e => {

0 commit comments

Comments
 (0)