http://bugs.winehq.org/show_bug.cgi?id=6554
Jerome Leclanche <adys.wh(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adys.wh(a)gmail.com
Regression SHA1| |a4fb1c94ac54dbf5b425858c31d
| |02bb2c444331a
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2527
Jerome Leclanche <adys.wh(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|winex11.drv |-unknown
Summary|popup screen flashes |wxtide32 popup window is
|information & then becomes |blank
|blank |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2527
Jerome Leclanche <adys.wh(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #31 from Jerome Leclanche <adys.wh(a)gmail.com> 2011-11-02 04:59:24 CDT ---
Closing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2527
Jerome Leclanche <adys.wh(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
--- Comment #30 from Jerome Leclanche <adys.wh(a)gmail.com> 2011-11-02 04:57:46 CDT ---
[09:56:02] <julliard> Adys: the code is ok but it needs to be run on WM_PAINT
[09:56:08] <julliard> that's an app bug
[09:56:23] <Adys> how come it would run on windows?
[09:57:00] <julliard> windows updates are synchronous, but it would still break
if the window needs to be repainted
[09:57:12] <Adys> invalid then?
[09:57:21] <julliard> yes, broken app
Invalid.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27622
Summary: wine regedit.exe crashes in comctl32
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: piotr.caban(a)gmail.com
Created an attachment (id=35312)
--> (http://bugs.winehq.org/attachment.cgi?id=35312)
terminal output
I came across this bug while using regedit.
Steps to reproduce:
1) Create a new wineprefix
2) wine regedit
3) In the left-side window select a registry key/hive (e.g. HKEY_CLASSES_ROOT).
4) In the right-side window place the mouse pointer somewhere below the last
row (in the empty/white area). While left-mouse button is pressed, drag the
mouse upwards (as if you were selecting multiple rows). When the mouse cursor
reaches the last row Wine crashes.
This is due to the following commit:
a87e726d6b2a7ec4b86cb01a3267237fb366427b is the first bad commit
commit a87e726d6b2a7ec4b86cb01a3267237fb366427b
Author: Piotr Caban <piotr(a)codeweavers.com>
Date: Mon Jun 6 20:52:34 2011 +0200
comctl32: Improve LISTVIEW_MarqueeHighlight performance.
:040000 040000 3fc79e993e9171f77fe069c62b16709db302c848
6a3fda702dd213a4948b5c38fb16926e404328ef M dlls
The patch can be reverted cleanly on 1.3.23 and that fixed the crash.
Author of the patch added to CC.
Fedora 15 x86
Gnome 3 + Mutter as window manager
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=28377
Summary: Mouse input causes major performance loss
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pastas4(a)gmail.com
Since I upgraded from Wine 1.3.26 to 1.3.28, I have noticed a regression in all
games I have installed on Wine - their performance is a lot lower and in some
of them graphical glitches appear.
The performance regression is clearly due to the input. For example, if I don't
move the cursor, everything works fine - the performance is what it was earlier
and there are no glitches, but as soon as I move the mouse, the performance is
lowered dramatically (to around 1 FPS in every game I tested) and in some
cases, such as running Heroes of Might and Magic III in a virtual desktop,
graphical glitches appear (a box around the cursor that displays incorrect data
- from another part of the screen).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2527
--- Comment #29 from Jerome Leclanche <adys.wh(a)gmail.com> 2011-11-02 04:42:58 CDT ---
For some reason I can't attach files...
Anyhow, the source is provided, and this is the open_popup function:
static void open_popup(DWORD mouseXY, char *text) {
int mouseX, mouseY, cxscreen, startX, startY, side; /*cyscreen*/
PAINTSTRUCT ps;
RECT purc = {0,0,0,0};
HFONT oldfont;
#define POPUP_BORDER 1
close_popup();
// Open window with dummy position and size to get device context
popup = CreateWindow("STATIC", "", WS_POPUP|WS_VISIBLE,10,10,250,50,
hwndMain, NULL, t_hinst, NULL);
BeginPaint(popup,&ps);
oldfont = SelectFont(ps.hdc,gfont);
DrawText(ps.hdc, text, strlen(text), &purc, DT_CALCRECT); // Get extents for
this text
purc.right += POPUP_BORDER*2;
purc.bottom += POPUP_BORDER*2;
mouseX = LOWORD(mouseXY);
mouseY = HIWORD(mouseXY);
cxscreen = GetSystemMetrics(SM_CXSCREEN);
if (side=(cxscreen > (mouseX + winX + purc.right)))
startX = mouseX + winX;
else startX = mouseX + winX - purc.right;
if (0 < (mouseY + winY - purc.bottom))
startY = mouseY + winY - purc.bottom;
else startY = mouseY + winY;
// Now make window the right size and in the right place
MoveWindow(popup,startX,startY,purc.right,purc.bottom,FALSE);
FillRect( ps.hdc, &purc, GetStockObject(WHITE_BRUSH));
FrameRect(ps.hdc, &purc, GetStockObject(BLACK_BRUSH));
purc.left += POPUP_BORDER;
purc.top += POPUP_BORDER;
purc.right -= POPUP_BORDER;
purc.bottom -= POPUP_BORDER;
DrawText(ps.hdc,text,strlen(text),&purc,DT_WORDBREAK|(side? DT_LEFT :
DT_RIGHT));
SelectFont(ps.hdc,oldfont);
EndPaint(popup,&ps);
}
I'll let someone transform that into a testcase. The full wxtide.c file is
provided in the .7z that comes with the download.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2527
Jerome Leclanche <adys.wh(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adys.wh(a)gmail.com
--- Comment #28 from Jerome Leclanche <adys.wh(a)gmail.com> 2011-11-02 04:32:35 CDT ---
Still an issue in wine-1.3.31-280-g3373761
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=2805
Jerome Leclanche <adys.wh(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://appdb.winehq.org/app |http://www.utopiatemple.com
|view.php?appId=531 |/angel.php?download=330
CC| |adys.wh(a)gmail.com
Summary|clipboard error |Utopia angel does not start
| |(clipboard error)
--- Comment #14 from Jerome Leclanche <adys.wh(a)gmail.com> 2011-11-02 04:25:57 CDT ---
Same in wine-1.3.31-280-g3373761
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=4309
Jerome Leclanche <adys.wh(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adys.wh(a)gmail.com
--- Comment #6 from Jerome Leclanche <adys.wh(a)gmail.com> 2011-11-02 04:16:19 CDT ---
(In reply to comment #5)
Still happens.
adys@azura ~/.../abc % wineboot
Warning: could not find DOS drive for current working directory
'/home/adys/.../abc', starting in the Windows directory.
wine-1.3.31-280-g3373761
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.