Skip to content

Commit

Permalink
rendering fix for new run/debug splitbutton
Browse files Browse the repository at this point in the history
  • Loading branch information
weinand committed Jul 20, 2021
1 parent 23477b2 commit c8d537c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/platform/actions/browser/menuEntryActionViewItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/

import 'vs/css!./menuEntryActionViewItem';
import { addDisposableListener, asCSSUrl, ModifierKeyEmitter, append, EventType, $ } from 'vs/base/browser/dom';
import { addDisposableListener, asCSSUrl, ModifierKeyEmitter, append, EventType, $, prepend } from 'vs/base/browser/dom';
import { IAction, IRunEvent, Separator, SubmenuAction } from 'vs/base/common/actions';
import { IDisposable, toDisposable, MutableDisposable, DisposableStore } from 'vs/base/common/lifecycle';
import { localize } from 'vs/nls';
Expand Down Expand Up @@ -361,7 +361,7 @@ class DropdownWithDefaultActionViewItem extends BaseActionViewItem {
this._defaultAction = this._instaService.createInstance(MenuEntryActionViewItem, lastAction, undefined);

if (this._container) {
this.render(this._container);
this._defaultAction.render(prepend(this._container, $('.action-container')));
}
}

Expand Down

0 comments on commit c8d537c

Please sign in to comment.