From 79dfaa7a9b731316e177d5634af1c8ea77a853b9 Mon Sep 17 00:00:00 2001 From: cxgeorge <> Date: Fri, 20 Jul 2001 22:40:09 +0000 Subject: [PATCH] remove null idle callbk --- direct/src/showbase/showBase.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/direct/src/showbase/showBase.cxx b/direct/src/showbase/showBase.cxx index a5ee05a65e..bbb9045e62 100644 --- a/direct/src/showbase/showBase.cxx +++ b/direct/src/showbase/showBase.cxx @@ -153,9 +153,8 @@ ChanConfig make_graphics_window(GraphicsPipe *pipe, WindowCallback *wcb = new WindowCallback(pipe, render, &initial_state); - // Set draw and idle callbacks + // Set draw callback. Currently there is no reason to use the idle callback. main_win->set_draw_callback(wcb); - main_win->set_idle_callback(wcb); return chan_config; }