GS Window: image move: changing KB shortcuts to CTRL+ALT+ normal arrows (and + NUMPAD-/ for reset).

Using ctrl + numpad 2/4/6/8/5 seem to not work on all systems. This might be a wxWidgets issue. Please read the commit comments for r4537 for some details.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4538 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
avihal@gmail.com 2011-04-06 19:50:38 +00:00
parent b4d0eddc7c
commit 490b5f6a7f
1 changed files with 5 additions and 5 deletions

View File

@ -55,11 +55,11 @@ void GSPanel::InitDefaultAccelerators()
m_Accels->Map( AAC( WXK_NUMPAD_SUBTRACT ).Cmd().Alt(), "GSwindow_ZoomOutY" );
m_Accels->Map( AAC( WXK_NUMPAD_MULTIPLY ).Cmd().Alt(), "GSwindow_ZoomResetY" );
m_Accels->Map( AAC( WXK_NUMPAD8 ).Cmd(), "GSwindow_OffsetYminus" );
m_Accels->Map( AAC( WXK_NUMPAD2 ).Cmd(), "GSwindow_OffsetYplus" );
m_Accels->Map( AAC( WXK_NUMPAD4 ).Cmd(), "GSwindow_OffsetXminus" );
m_Accels->Map( AAC( WXK_NUMPAD6 ).Cmd(), "GSwindow_OffsetXplus" );
m_Accels->Map( AAC( WXK_NUMPAD5 ).Cmd(), "GSwindow_OffsetReset" );
m_Accels->Map( AAC( WXK_UP ).Cmd().Alt(), "GSwindow_OffsetYminus" );
m_Accels->Map( AAC( WXK_DOWN ).Cmd().Alt(), "GSwindow_OffsetYplus" );
m_Accels->Map( AAC( WXK_LEFT ).Cmd().Alt(), "GSwindow_OffsetXminus" );
m_Accels->Map( AAC( WXK_RIGHT ).Cmd().Alt(), "GSwindow_OffsetXplus" );
m_Accels->Map( AAC( WXK_NUMPAD_DIVIDE ).Cmd().Alt(), "GSwindow_OffsetReset" );
m_Accels->Map( AAC( WXK_ESCAPE ), "Sys_Suspend" );
m_Accels->Map( AAC( WXK_F8 ), "Sys_TakeSnapshot" );