1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00
This commit is contained in:
jules 2007-12-04 13:25:38 +00:00
parent e0cb79d093
commit 220c08ac0f

View file

@ -788,8 +788,8 @@ public:
GetWindowRect (hwnd, &r);
POINT p;
p.x = x + r.left;
p.y = y + r.top;
p.x = x + r.left + windowBorder.getLeft();
p.y = y + r.top + windowBorder.getTop();
HWND w = WindowFromPoint (p);