Continue fixing silly Windows-related bugs
This commit is contained in:
parent
4391f99a25
commit
165f42daaf
|
@ -170,11 +170,13 @@ public:
|
|||
return;
|
||||
}
|
||||
|
||||
if( key <= 255 && isprint( key ) )
|
||||
if( key <= 255 && isprint( key ) && !isspace( key ) )
|
||||
{
|
||||
// Let EVT_CHAR handle this one
|
||||
aEvent.DoAllowNextEvent();
|
||||
#ifndef __WXMSW__
|
||||
aEvent.Skip();
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue