http://bugs.winehq.org/show_bug.cgi?id=5611
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From dank(a)kegel.com 2006-20-07 09:15 -------
Patches in cvs, seem to solve the problem. 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=5385
------- Additional Comments From dank(a)kegel.com 2006-20-07 09:10 -------
Also, what are the steps to reproduce the problem?
Does it happen when Notes starts up, or only
when you use a particular function?
--
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=5725
Summary: Code for undocumented SwitchToThisWindow function does
not reflect empirical evidence
Product: Wine
Version: unspecified
Platform: All
URL: http://source.winehq.org/source/dlls/user/winpos.c#L153
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neil(a)parkwaycc.co.uk
void WINAPI SwitchToThisWindow( HWND hwnd, BOOL restore )
{
ShowWindow( hwnd, restore ? SW_RESTORE : SW_SHOWMINIMIZED );
}
1. SwitchToThisWindow never minimizes a window
2. The restore flag only applies to minimised windows
3. If restore is false then the foreground window is sent to the back
(even if it was the hwnd) unless it is a topmost window.
So, the code should look something like this:
void WINAPI SwitchToThisWindow( HWND hwnd, BOOL restore )
{
HWND hwndOld = GetForegroundWindow();
SetForegroundWindow( hWnd );
if ( restore )
{
if ( IsIconic( hwnd ) )
ShowWindow( hwnd, SW_RESTORE );
}
else
{
if ( !( GetWindowLong( hwndOld, GWL_EXSTYLE ) & WS_EX_TOPMOST ) )
SetWindowPos( hWndOld, HWNDBOTTOM, 0, 0, 0, 0,
SWP_NOMOVE | SWP_NOSIZE );
}
}
(sorry I don't know a better way of testing for a topmost window)
--
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=5715
------- Additional Comments From jeremielapuree(a)yahoo.fr 2006-20-07 07:38 -------
I tried with the wine 0.9.17 version. It works. So bug occurs after 07-10, but I
don't know to do a regression test. Tried once, but failed.
So, hope that somebody will do it
Joaopa
--
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=5171
------- Additional Comments From caver15(a)gmail.com 2006-20-07 04:55 -------
I have same problem with portraits, ship mini images, drones images, bpo/bpc images.
Images blink for a short time in lower-left corner.
--
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=5724
------- Additional Comments From galeru(a)gmail.com 2006-20-07 04:33 -------
the comment sheet mixes flat and whatever else you have chosen. So, you have
the same number of bases as you have comments, in order by date, then all the
replies are reprinted underneath their respective comments, causing some to be
copied a large number of times.
--
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=5724
galeru(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Submitting a reply creates |Threaded and Nested modes
|duplicate comments |display incorrectly
--
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=5724
Summary: Submitting a reply creates duplicate comments
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: galeru(a)gmail.com
If you reply to a comment, it nests it, but also creates a new thread at the
same time, eg:
--Original comment
->reply to comment
--reply to comment (same as above)
--
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=5715
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-20-07 03:18 -------
I'm not a wined3d guru, but as te game used to run fine for you, i suspect the
problem somewhere else. Best thing to do is of course a regression test
--
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.