OpenSceneGraph/src/osgWidget
Robert Osfield 5209b33c31 From Max Bandazian, "Lines 302-305 of WindowManager.cpp seem to have a parenthesizing error - the code is
if(
                (!win || win->getVisibilityMode() == Window::VM_PARTIAL) &&
                !win->isPointerXYWithinVisible(x, y)
            ) continue;

But it probably should be

if (!win || (win->getVisibilityMode() == Window::VM_PARTIAL) && !win->isPointerXYWithinVisible(x, y)))
   continue;

The effect of the bug is to segfault if a non-osgWidgets::Window node hasn't been excluded from picking via NodeMask."
2008-09-17 17:13:13 +00:00
..
Box.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Canvas.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
CMakeLists.txt From Adrain Elgi, added osgGA to link list 2008-07-18 21:17:35 +00:00
Frame.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Input.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Label.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Lua.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Python.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
StyleManager.cpp From Sergey Leontyev, "1. In StyleManager 2008-08-18 11:21:41 +00:00
Table.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Util.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Version.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
ViewerEventHandlers.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Widget.cpp Ran fixtabs to enforce four space tabs 2008-08-18 11:17:44 +00:00
Window.cpp Changed curr and min to current and minimum respectively, to avoid compile problems under Windows 2008-09-01 14:03:41 +00:00
WindowManager.cpp From Max Bandazian, "Lines 302-305 of WindowManager.cpp seem to have a parenthesizing error - the code is 2008-09-17 17:13:13 +00:00