# HG changeset patch # User Daniel Atallah # Date 1106432834 0 # Node ID f348b3439ce497c11fc1befb58fab394f0b934b9 # Parent 74180743304a780c297d595caf8b9a9df4ce6e6f [gaim-migrate @ 11892] This should fix the issue where the docked Buddy List's menus are obscured by the buddy list committer: Tailor Script diff -r 74180743304a -r f348b3439ce4 plugins/win32/winprefs/gtkappbar.c --- a/plugins/win32/winprefs/gtkappbar.c Sat Jan 22 19:40:30 2005 +0000 +++ b/plugins/win32/winprefs/gtkappbar.c Sat Jan 22 22:27:14 2005 +0000 @@ -502,8 +502,8 @@ SetWindowPos(msg->hwnd, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); } else { - SetWindowPos(msg->hwnd, HWND_TOPMOST, 0, 0, 0, 0, - SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); + SetWindowPos(msg->hwnd, HWND_NOTOPMOST, 0, 0, 0, 0, + SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE | SWP_FRAMECHANGED); } break;