Is there a shortcut to close all inspector windows ? and if not how I close the window of a selected inspector ?
Basically I accidentally opened over 1000 inspector windows and i want to close them all now because they have occupied the entire GUI and I cant do anything other than closing them on by one. I cant open the world menu or open a new window because they take not only the entire window but also they are always on top.
Bring up the halos [1] on the TaskBarMorph [2] and click the top left halo to delete it from the World.
Then, to actually close the windows, use something like:
World submorphs do: [ :e |
[ (e model model model isKindOf: InspectorNavigator) ifTrue: [ e delete ] ]
on: Error
do: [ ] ]