Turning off default camera controls

How might I turn off the default mouse camera controls?

By default, Panda3D runs a task that enables you to move the camera using the mouse. The keys to do this are:

    * Left Button: pan left and right
    * Right Button: move forwards and backwards
    * Middle Button: rotate around the origin of the application
    * Right and Middle Buttons: roll the point of view around the view axis 

I’d like this to not happen in my game (the camera is in a fixed position). Is there a task that I can remove from the task manager, or a way to override this? It seems like a pretty stupid question, but I’m having trouble finding info on it…

reading the manual helps in a lot of cases:

http://www.panda3d.org/manual/index.php/Mouse_Support

base.disableMouse()

It doesn’t disable mouse at all as you might think, it only disables default mouse controls.