[#2485] Fix rocket visibility when show all is actioned

This commit is contained in:
Ahanu Dewhirst 2024-07-19 12:47:19 +10:00
parent 196d533b19
commit 8c95f6104d

View File

@ -1392,6 +1392,7 @@ public class RocketActions {
@Override
public void actionPerformed(ActionEvent e) {
rocket.setVisible(true);
getDescendants(rocket).forEach(descendant -> descendant.setVisible(true));
}
}