Fix missing zoom-to-selection hotkey branch in pl_editor

This commit is contained in:
Chris Pavlina 2016-06-11 11:49:55 -04:00
parent 8c81e53c03
commit 92e3c4a45c
1 changed files with 5 additions and 0 deletions

View File

@ -213,6 +213,11 @@ bool PL_EDITOR_FRAME::OnHotKey( wxDC* aDC, int aHotkeyCode,
GetEventHandler()->ProcessEvent( cmd );
break;
case HK_ZOOM_SELECTION:
cmd.SetId( ID_ZOOM_SELECTION );
GetEventHandler()->ProcessEvent( cmd );
break;
case HK_RESET_LOCAL_COORD: // Reset the relative coord
GetScreen()->m_O_Curseur = GetCrossHairPosition();
break;