Updated docs, distrib and version

wxGLCanvas now gets keyboard input


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2315 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-04-30 13:53:02 +00:00
parent d9f39e09e8
commit 3cdda6cd81
6 changed files with 107 additions and 48 deletions

View File

@@ -375,6 +375,11 @@ void TestGLCanvas::OnChar(wxKeyEvent& event)
glDisable(GL_LIGHTING);
}
break;
default:
{
event.Skip();
return;
}
}
Refresh(FALSE);