[Bug 1798] Keyboard focus to terminal, not the program

Wine Bugs wine-bugs at winehq.org
Sat May 5 17:51:41 CDT 2007


http://bugs.winehq.org/show_bug.cgi?id=1798





------- Additional Comments From bero at arklinux.org  2007-05-05 17:51 -------
The later check for a fullscreen window fails because rect.right == 
screen_width, but rect.left == -1 and rect.bottom == screen_height, but 
rect.top == -1.

Maybe the check should be

if ((rect.right - rect.left) >= screen_width && (rect.bottom - rect.top) >= 
screen_height)

instead of

if ((rect.right - rect.left) == screen_width && (rect.bottom - rect.top) == 
screen_height)

?


When "fixed" like this, keyboard focus etc. are ok, but the window decorations 
are drawn (incorrectly, the app should be fullscreen without any frames) and 
kicker (KDE panel) is shown on top of the app.

The variant using "32" in the Windoze code works correctly.

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list