Skip to content

Commit a4f436b

Browse files
committed
1 parent cf91a9b commit a4f436b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/browser/parts/views/viewPaneContainer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,7 @@ export class ViewPaneContainer extends Component implements IViewPaneContainer {
12641264
return;
12651265
}
12661266

1267-
overlay = new ViewPaneDropOverlay(pane.dropTargetElement, this.options.orientation ?? Orientation.VERTICAL, this.themeService);
1267+
overlay = new ViewPaneDropOverlay(pane.dropTargetElement, this.orientation ?? Orientation.VERTICAL, this.themeService);
12681268
}
12691269

12701270
if (dropData.type === 'composite' && dropData.id !== this.viewContainer.id) {
@@ -1274,7 +1274,7 @@ export class ViewPaneContainer extends Component implements IViewPaneContainer {
12741274
const viewsToMove = this.viewDescriptorService.getViewDescriptors(container).allViewDescriptors;
12751275

12761276
if (viewsToMove.length === 1 && viewsToMove[0].canMoveView) {
1277-
overlay = new ViewPaneDropOverlay(pane.dropTargetElement, this.options.orientation ?? Orientation.VERTICAL, this.themeService);
1277+
overlay = new ViewPaneDropOverlay(pane.dropTargetElement, this.orientation ?? Orientation.VERTICAL, this.themeService);
12781278
}
12791279
}
12801280

0 commit comments

Comments
 (0)