Removed redundant case in fix for STR #2304.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7883 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2010-11-22 13:11:48 +00:00
parent 7d84aea1fb
commit cdad633e87

View File

@ -525,7 +525,7 @@ int Fl_Graphics_Driver::not_clipped(int x, int y, int w, int h) {
// now all coordinates to test are in the range [0,32767]
return r ? XRectInRegion(r, tx, ty, tw, th) : 1;
return XRectInRegion(r, tx, ty, tw, th);
#elif defined(WIN32)
if (!r) return 1;
RECT rect;