fix join with command ordering fyi @roblourens

This commit is contained in:
Johannes Rieken 2020-08-20 11:42:13 +02:00
parent 135b6da837
commit 0e0a0657cd

View file

@ -1478,7 +1478,8 @@ registerAction2(class extends NotebookCellAction {
menu: {
id: MenuId.NotebookCellTitle,
when: ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_EDITOR_EDITABLE, NOTEBOOK_CELL_EDITABLE),
group: '2_edit',
group: CellOverflowToolbarGroups.Edit,
order: 10
}
});
}
@ -1503,6 +1504,7 @@ registerAction2(class extends NotebookCellAction {
id: MenuId.NotebookCellTitle,
when: ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_EDITOR_EDITABLE, NOTEBOOK_CELL_EDITABLE),
group: CellOverflowToolbarGroups.Edit,
order: 11
}
});
}