http://bugs.winehq.org/show_bug.cgi?id=4772
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-08-03 09:18 -------
Oh, if it's not a regression forget about my remarks :)
--
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.
http://bugs.winehq.org/show_bug.cgi?id=4772
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |regression
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-08-03 09:17 -------
Could you please do a regression test? Thanks
--
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.
http://bugs.winehq.org/show_bug.cgi?id=4772
------- Additional Comments From mike(a)codeweavers.com 2006-08-03 09:12 -------
Sorry, I don't agree with you that this is a regression. As you mentioned, the
buttons were cut off in Wine 0.9.7, and they are now just a bit more outside of
the screen than before.
Wine 0.9.9 uses different (and more correct) fonts for some dialogs. This is
probably what caused the change. The real bug is that the application's Window
is the wrong size, and that is what needs to be tracked down and fixed.
It may be the wrong size because the font it expects to use is not available on
your system, so perhaps a good start would be to install some more fonts on your
system, and see if that fixes it. (Try figure out which font it wants.)
--
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.
http://bugs.winehq.org/show_bug.cgi?id=4509
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-08-03 09:08 -------
It's this patch:http://www.winehq.org/pipermail/wine-cvs/2005-November/019187.html
The part of the patch that breaks the app is below, You can still revert the
patch with currnt cvs (patch -Rp1 -i patch.diff). To check: run the app, hit 4
times OK and it will crash. With the reversed patch: hit 4 time ok, and the main
window start fine. Anyone an idea for a proper fix?
--- wine/dlls/x11drv/winpos.c:1.140 9 Nov 2005 10:35:48 -0000
+++ wine/dlls/x11drv/winpos.c 9 Nov 2005 10:35:48 -0000
@@ -1003,12 +1003,22 @@ BOOL X11DRV_ShowWindow( HWND hwnd, INT c
if (!IsWindow( hwnd )) return wasVisible;
}
- /* ShowWindow won't activate a not being maximized child window */
- if ((style & WS_CHILD) && cmd != SW_MAXIMIZE)
- swp |= SWP_NOACTIVATE | SWP_NOZORDER;
+ if (!IsWindowVisible( GetAncestor( hwnd, GA_PARENT )))
+ {
+ /* if parent is not visible simply toggle WS_VISIBLE and return */
+ if (showFlag) WIN_SetStyle( hwnd, WS_VISIBLE, 0 );
+ else WIN_SetStyle( hwnd, 0, WS_VISIBLE );
+ }
+ else
+ {
+ /* ShowWindow won't activate a not being maximized child window */
+ if ((style & WS_CHILD) && cmd != SW_MAXIMIZE)
+ swp |= SWP_NOACTIVATE | SWP_NOZORDER;
+
+ SetWindowPos( hwnd, HWND_TOP, newPos.left, newPos.top,
+ newPos.right, newPos.bottom, LOWORD(swp) );
+ }
- SetWindowPos( hwnd, HWND_TOP, newPos.left, newPos.top,
- newPos.right, newPos.bottom, LOWORD(swp) );
if (cmd == SW_HIDE)
{
HWND hFocus;
--
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.
http://bugs.winehq.org/show_bug.cgi?id=4735
wine.tester(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
--
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.
http://bugs.winehq.org/show_bug.cgi?id=4768
------- Additional Comments From michal.seliga(a)visicom.sk 2006-08-03 08:49 -------
ok, it is there, it only must be reviewed
--
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.
http://bugs.winehq.org/show_bug.cgi?id=4772
Summary: GUI Gets cut off (3 buttons are missing)
Product: Wine
Version: 0.9.9.
Platform: PC
URL: http://www.suxx.xbox-hq.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tn(a)chambers.no-ip.info
There was some kind of regression that happenned between 097 and 099. When
running suxx (see link) with 097 the three buttons in the top right of the gui
were partially there (half cut off) but usable. Now in 099 they are completely
gone, you can tab to them ..but they don't show. Please see the screenshots at
the appsdb at http://appdb.winehq.org/screenshots.php?appId=2892&versionId=4230
to see what I mean. Thank you.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=4768
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-03 08:35 -------
Could you please add an entry in the AppDB for this program.http://appdb.winehq.org/
--
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.
http://bugs.winehq.org/show_bug.cgi?id=219
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |lcid-fire(a)gmx.net
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-03 08:31 -------
*** Bug 4766 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=4766
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-03 08:31 -------
Safedisk bug
*** This bug has been marked as a duplicate of 219 ***
--
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.