Skip to content

Commit 1d62a4a

Browse files
committed
Move actions to left side
1 parent 1fc6188 commit 1d62a4a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/vs/workbench/contrib/positronPlots/browser/positronPlots.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class PositronPlotsContribution extends Disposable implements IWorkbenchContribu
8989
order: 3,
9090
icon: Codicon.positronSizeToFit
9191
};
92-
MenuRegistry.appendMenuItem(MenuId.EditorTitle, zoomSubmenu);
92+
MenuRegistry.appendMenuItem(MenuId.EditorActionsLeft, zoomSubmenu);
9393

9494
// Register all the zoom actions
9595
registerAction2(ZoomToFitAction);

src/vs/workbench/contrib/positronPlots/browser/positronPlotsActions.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -454,12 +454,12 @@ export class PlotsActiveEditorCopyAction extends Action2 {
454454
precondition: PLOT_IS_ACTIVE_EDITOR,
455455
menu: [
456456
{
457-
id: MenuId.EditorTitle,
457+
id: MenuId.EditorActionsLeft,
458458
when: PLOT_IS_ACTIVE_EDITOR,
459459
group: 'navigation',
460460
order: 2,
461461
}
462-
]
462+
],
463463
});
464464
}
465465

@@ -491,7 +491,7 @@ export class PlotsActiveEditorSaveAction extends Action2 {
491491
precondition: PLOT_IS_ACTIVE_EDITOR,
492492
menu: [
493493
{
494-
id: MenuId.EditorTitle,
494+
id: MenuId.EditorActionsLeft,
495495
when: PLOT_IS_ACTIVE_EDITOR,
496496
group: 'navigation',
497497
order: 1,

0 commit comments

Comments
 (0)