Skip to content

Commit d9b234e

Browse files
committed
1 parent c2ee62c commit d9b234e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/contrib/debug/browser/debugToolBar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export class DebugToolBar extends Themable implements IWorkbenchContribution {
9494
}
9595

9696
const { actions, disposable } = DebugToolBar.getActions(this.debugToolBarMenu, this.debugService, this.instantiationService);
97-
if (!arrays.equals(actions, this.activeActions, (first, second) => first.id === second.id)) {
97+
if (!arrays.equals(actions, this.activeActions, (first, second) => first.id === second.id && first.enabled === second.enabled)) {
9898
this.actionBar.clear();
9999
this.actionBar.push(actions, { icon: true, label: false });
100100
this.activeActions = actions;

0 commit comments

Comments
 (0)