http://bugs.winehq.org/show_bug.cgi?id=10283 Peter Beutner <p.beutner(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |p.beutner(a)gmx.net --- Comment #6 from Peter Beutner <p.beutner(a)gmx.net> 2007-11-10 08:11:32 --- from WINEDEBUG=+win log: ------ trace:win:SetWindowPos hwnd 0x2002a, after (nil), -1736677,-548885 (0x0), flags 00000001 trace:win:dump_winpos_flags flags: SWP_NOSIZE ------- seems the window is just invisible because it is moved off the screen. I'm not really familiar with this area, is it valid to pass negativ values here? inserting a simple hack: --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -1672,6 +1672,10 @@ BOOL WINAPI SetWindowPos( HWND hwnd, HWND hwndInsertAfter, return FALSE; } + if(x < 0 && y < 0) + return TRUE; and the menu shows up. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.