http://bugs.winehq.org/show_bug.cgi?id=4729
------- Additional Comments From j.mansour(a)stud.uni-goettingen.de 2006-11-08 06:42 -------
I can confirm this bug. Resizing the tool windows makes Photoshop crash. When
it crashes, it seems to go into an infinite loop and 'locks' keyboard and mouse
so I have to reboot.
However, if I click on an tab in the tool window before I try to resize it,
everything works as expected.
By the way, it's quite annoying that the tool windows aren't managed by the
window manager. When you minimize Photoshop or switch to another Desktop (e.g.
in KDE), the palettes stay around and float above all windows. Maybe they could
be given a default "borderless" style?
--
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=5915
Summary: Application gets crashed when I press enter in combobox
(While Cursor is present in combo)
Product: Wine
Version: 0.9.16.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ravinderonline(a)yahoo.com
CC: dank@kegel.com,infyquest@gmail.com
When list box of combo box is expanded, no crash occurs when I press enter. When
list box of combo box isnt expanded and cursor is present in combo box and I
press enter, Application crashes.
I tried to debug the wine code and could find the place from where crash
occurred. It is coming from /home/ravinder/winecode/wine-0.9.16/dlls/user/edit.c
case WM_GETDLGCODE:
result = DLGC_HASSETSEL | DLGC_WANTCHARS | DLGC_WANTARROWS;
if (es->style & ES_MULTILINE)
{
result |= DLGC_WANTALLKEYS;
break;
}
if (lParam && (((LPMSG)lParam)->message == WM_KEYDOWN))
{
int vk = (int)((LPMSG)lParam)->wParam;
if (es->hwndListBox && (vk == VK_RETURN || vk == VK_ESCAPE))
{
if (SendMessageW(GetParent(hwnd), CB_GETDROPPEDSTATE, 0, 0))
++ {
++ MessageBoxA(NULL,INSIDE IF LOOP, EDIT, MB_OK);
result |= DLGC_WANTMESSAGE;
++ }
++ else
++ {
++ //Some Code is missing to handle this situation when list box of combo box
isnt expanded.
++ }
}
break;
I tried sending different messages from this place like WM_KILLFOCUS but crash
inst being avoided. In one case crash stops when I remove the
if (SendMessageW(GetParent(hwnd), CB_GETDROPPEDSTATE, 0, 0))
and put directly
result |= DLGC_WANTMESSAGE; under
if (es->hwndListBox && (vk == VK_RETURN || vk == VK_ESCAPE))
But in this case focus isnt lost.
I made a test case but I wasnt able to simulate the issue in test case. I have
attached the screenshot of the issue and log generated with channel as edit and
combo.
--
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=5586
------- Additional Comments From thomas.klute(a)gmx.de 2006-11-08 03:59 -------
I have got the same problem on my Gentoo-Linux AMD64 computer with 1GB RAM, but
after a lot of "err:d3d_surface:d3dfmt_convert_surface Unsuportede conversation
type 9" lines the message
"fixme:d3d_surface:IWineGDISurfaceImpl_Blt Can't handle DDBLT_WAIT flag right now."
is printed (and nothing after that until I close the program with CTRL+C).
I experienced this bug in all versions since 0.9.16 (current is 0.9.19).
--
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=5914
Summary: GDI:Freetype.c - OpenFontFile FT_New_Face rets 81 (Notes
Client)
Product: Wine
Version: 0.9.18.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stefan.siebert(a)web.de
Hello,
from time to time FT_New_Face fails to open a font that previously could be
opened. Freetype's fterrdef.h defines this as 'Cannot_Open_Stream'. After this
error the font metrics get rebuilt with a 0 count, which relates in a crash.
--
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.