Steps:
1. Start new Freeplay game.
2. Enter in console:
Code: Select all
/c game.players[1].game_view_settings.show_research_info = false
/c game.players[1].game_view_settings.show_side_menu = false
/c game.players[1].game_view_settings.show_minimap = false
3. Place a pin (Alt + Right Click by default)
Actual: List of pins doesn't appear.
Expected: see below.
4. Enter in console (show minimap):
Code: Select all
/c game.players[1].game_view_settings.show_minimap = true
Expected: see below.
5. Enter in console (hide minimap):
Code: Select all
/c game.players[1].game_view_settings.show_minimap = false
Expected (either one of three):
1. (most preferred) List of pins appears after step #3. A separate setting in game_view_settings allows control over visibility of list of pins.
2. List of pins hides after step #5. Only affected by show_minimap (see Notes).
3. (least preferred) List of pins hides after step #5. Visibility affected by presence of any right side UI element (see Notes).
Notes:
- Any one of 3 right side UI elements can be used instead of minimap in steps #4 and #5.

