mirror of
https://github.com/fltk/fltk.git
synced 2026-05-20 04:31:25 +08:00
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:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user