$ xrandr -q Screen 0: minimum 320 x 200, current 2732 x 768, maximum 8192 x 8192
GetWindowRect(GetDesktopWindow(), &r); r.left, r.top, r.right, r.bottom are: 0 0 1366 768
This causes WindowFromPoint() to fail (returns NULL) when the point is on my second monitor, which causes X11 -> Wine drag and drop to also fail since it uses WindowFromPoint().
It seems wineserver doesn't allow the point to fall outside the window from which the search starts, which causes the point to be rejected because the desktop window doesn't contain it.
What's the problem here, that the desktop window is too small, or that the window search criteria are too strict?
Damjan Jovanovic
Damjan Jovanovic damjan.jov@gmail.com writes:
What's the problem here, that the desktop window is too small, or that the window search criteria are too strict?
The destop window is supposed to be the size of the whole screen.