http://bugs.winehq.org/show_bug.cgi?id=9169
------- Additional Comments From spencercw@googlemail.com 2007-03-08 08:45 ------- Ok this is easily fixed by adding win->parent to the && list which was removed in the patch:
- return (win && (is_desktop_window(win) || is_desktop_window(win->parent))); + return (win && win->parent && (is_desktop_window(win) || is_desktop_window(win->parent)));
Does this look ok?