# HG changeset patch # User Will Thompson # Date 1205606164 0 # Node ID d5d95a852a1c5c95898f7e30f0a396d65d835db3 # Parent ff9c67757b823c392ba73f45107e612358ac8abd Danny Baumann pointed out that the status box menu should have the appropriate hint set. diff -r ff9c67757b82 -r d5d95a852a1c pidgin/gtkstatusbox.c --- a/pidgin/gtkstatusbox.c Sat Mar 15 14:49:22 2008 +0000 +++ b/pidgin/gtkstatusbox.c Sat Mar 15 18:36:04 2008 +0000 @@ -1735,6 +1735,10 @@ } gtk_window_set_resizable (GTK_WINDOW (status_box->popup_window), FALSE); +#if GTK_CHECK_VERSION(2,10,0) + gtk_window_set_type_hint (GTK_WINDOW (status_box->popup_window), + GDK_WINDOW_TYPE_HINT_POPUP_MENU); +#endif #if GTK_CHECK_VERSION(2,2,0) gtk_window_set_screen (GTK_WINDOW (status_box->popup_window), gtk_widget_get_screen (GTK_WIDGET (status_box)));