Open menu with "Tab" or "Escape"

Just updated to 1.1, im trying to open the main menu using the Escape button, How can i open the menu with any button i want?
 
Added this line of code to the script "DisplayPanelManager.cs":

private void Update() { if(Input.GetButtonDown("Cancel")) { m_MainMenuPanel.SmartOpen(); } }
 
Top