Hi, I find world menu order in Pharo 6.1. with enable Iceberg a little bit awkward :)
[image: Inline images 1] Any thought on why Iceberg is the first? It breaks muscle memory. P.S. To fix the order remove `parent: #'MostUsedTools'` from IceRepositoriesBrowser class>>#menuCommandOn: so that implementation is: menuCommandOn: aBuilder "Add a custom menu item to the world menu" <worldMenu> (aBuilder item: #'Iceberg') order: 0.8; icon: self icon; "parent: #'MostUsedTools'; <-- remove" keyText: 'o, i'; action: [ self open ]. Cheers, Alex
