Can now use left control + O to bring up open dialog

This commit is contained in:
DirtPiper
2019-11-10 23:02:29 -05:00
parent 98f4246f17
commit da3cdf405e

View File

@@ -696,7 +696,7 @@ void Application::onKeyPressed(int key)
{
deleteInstance();
}
if (GetHoldKeyState(VK_RCONTROL) && key=='O')
if ((GetHoldKeyState(VK_LCONTROL) || GetHoldKeyState(VK_RCONTROL)) && key=='O')
{
_dataModel->getOpen();
}