Skip to content

Commit

Permalink
Both 'Select for Compare' and 'Compare with Selected' had order: 'z'.…
Browse files Browse the repository at this point in the history
… To more clearly specify the order in which navigator menu items are to be displayed, 'Select for Compare' and 'Compare with Selected' were assigned order 'za' and 'zb', respectively.

Signed-off-by: seantan22 <sean.a.tan@ericsson.com>
  • Loading branch information
seantan22 authored and paul-marechal committed Jan 7, 2021
1 parent 39887bf commit c79e9d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/navigator/src/browser/navigator-contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,11 +457,11 @@ export class FileNavigatorContribution extends AbstractViewContribution<FileNavi

registry.registerMenuAction(NavigatorContextMenu.COMPARE, {
commandId: NavigatorDiffCommands.COMPARE_FIRST.id,
order: 'z'
order: 'za'
});
registry.registerMenuAction(NavigatorContextMenu.COMPARE, {
commandId: NavigatorDiffCommands.COMPARE_SECOND.id,
order: 'z'
order: 'zb'
});
}

Expand Down

0 comments on commit c79e9d4

Please sign in to comment.