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