diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2000-03-15 18:57:07 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2000-03-15 18:57:07 +0000 |
| commit | a73c7f58e6a0bb4b4eab922396500c25c118a18b (patch) | |
| tree | 7b846ad94ede2aa3e46c1401dd6758562add7e00 /documentation/opengl.html | |
| parent | af5190b95f6b4eb16c028aeb9620f5ebcfe4a0ec (diff) | |
Documentation updates for 1.0.8.
FLUID GUI tweeks (OK and Cancel use now consistent, spacing now consistent,
Courier font for code, etc.)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1039 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/opengl.html')
| -rw-r--r-- | documentation/opengl.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/opengl.html b/documentation/opengl.html index 8a5ab0aa7..2de7430e3 100644 --- a/documentation/opengl.html +++ b/documentation/opengl.html @@ -104,8 +104,8 @@ int MyWindow::handle(int event) { ... Return 1 if you understand/use the shortcut event, 0 otherwise... return 1; default: - // tell FLTK that I don't understand other events - return 0; + // pass other events to the base class... + return Fl_Gl_Window::handle(event); } } </PRE> |
