mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 10:37:41 -04:00
Separate KeyEvents and KeyPresses
This commit is contained in:
@ -828,9 +828,9 @@ void pfConsole::IHandleKey( plKeyEventMsg *msg )
|
||||
{
|
||||
fWorkingCursor = 0;
|
||||
}
|
||||
else
|
||||
else if (msg->GetKeyChar() != nil)
|
||||
{
|
||||
key = plKeyboardDevice::KeyEventToChar( msg );
|
||||
key = msg->GetKeyChar();
|
||||
// do they want to go into help mode?
|
||||
if( !fPythonMode && key == L'?' && fWorkingCursor == 0 )
|
||||
{
|
||||
|
@ -95,7 +95,6 @@ class pfConsole : public hsKeyedObject
|
||||
pfConsoleEngine *fEngine;
|
||||
|
||||
void IHandleKey( plKeyEventMsg *msg );
|
||||
char IKeyEventToChar( plKeyEventMsg *msg );
|
||||
|
||||
static UInt32 fConsoleTextColor;
|
||||
static pfConsole *fTheConsole;
|
||||
|
Reference in New Issue
Block a user