- bugfix for alpha letter keys used for certain hotkey operations

This commit is contained in:
Mark Vejvoda
2011-03-10 18:26:45 +00:00
parent 9636d5db06
commit 2f18f96743
3 changed files with 14 additions and 3 deletions

View File

@@ -647,6 +647,11 @@ void MainWindow::eventKeyDown(char key){
throw runtime_error("In [MainWindow::eventKeyDown] ERROR, program == NULL!");
}
//{
//Config &configKeys = Config::getInstance(std::pair<ConfigType,ConfigType>(cfgMainKeys,cfgUserKeys));
//printf("----------------------- key [%d] CameraModeLeft [%d]\n",key,configKeys.getCharKey("CameraModeLeft"));
//}
program->keyDown(key);
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);