@@ -1814,6 +1814,7 @@ registerAction2(class CollapseCellInputAction extends ChangeNotebookCellMetadata
1814
1814
id : MenuId . NotebookCellTitle ,
1815
1815
when : ContextKeyExpr . and ( NOTEBOOK_CELL_INPUT_COLLAPSED . toNegated ( ) ) ,
1816
1816
group : CellOverflowToolbarGroups . Collapse ,
1817
+ order : 0
1817
1818
}
1818
1819
} ) ;
1819
1820
}
@@ -1837,6 +1838,7 @@ registerAction2(class ExpandCellInputAction extends ChangeNotebookCellMetadataAc
1837
1838
id : MenuId . NotebookCellTitle ,
1838
1839
when : ContextKeyExpr . and ( NOTEBOOK_CELL_INPUT_COLLAPSED ) ,
1839
1840
group : CellOverflowToolbarGroups . Collapse ,
1841
+ order : 1
1840
1842
}
1841
1843
} ) ;
1842
1844
}
@@ -1860,6 +1862,7 @@ registerAction2(class CollapseCellOutputAction extends ChangeNotebookCellMetadat
1860
1862
id : MenuId . NotebookCellTitle ,
1861
1863
when : ContextKeyExpr . and ( NOTEBOOK_CELL_OUTPUT_COLLAPSED . toNegated ( ) , NOTEBOOK_CELL_HAS_OUTPUTS ) ,
1862
1864
group : CellOverflowToolbarGroups . Collapse ,
1865
+ order : 2
1863
1866
}
1864
1867
} ) ;
1865
1868
}
@@ -1883,6 +1886,7 @@ registerAction2(class ExpandCellOuputAction extends ChangeNotebookCellMetadataAc
1883
1886
id : MenuId . NotebookCellTitle ,
1884
1887
when : ContextKeyExpr . and ( NOTEBOOK_CELL_OUTPUT_COLLAPSED ) ,
1885
1888
group : CellOverflowToolbarGroups . Collapse ,
1889
+ order : 3
1886
1890
}
1887
1891
} ) ;
1888
1892
}
0 commit comments