Index: embedding/browser/gtk/src/EmbedPrompter.cpp =================================================================== RCS file: /cvsroot/mozilla/embedding/browser/gtk/src/EmbedPrompter.cpp,v retrieving revision 1.13 diff -p -u -u -p -U10 -r1.13 EmbedPrompter.cpp --- embedding/browser/gtk/src/EmbedPrompter.cpp 16 Sep 2004 12:39:47 -0000 1.13 +++ embedding/browser/gtk/src/EmbedPrompter.cpp 9 Jan 2005 01:01:33 -0000 @@ -197,20 +204,22 @@ EmbedPrompter::Create(PromptType aType, gtk_box_pack_start(GTK_BOX(contentsVBox), mTextField, FALSE, FALSE, 0); } // Add a checkbox if ((widgetFlags & INCLUDE_CHECKBOX) && !mCheckMessage.IsEmpty()) { mCheckBox = gtk_check_button_new_with_label(mCheckMessage.get()); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(mCheckBox), mCheckValue); + gtk_label_set_line_wrap(GTK_LABEL(gtk_bin_get_child(GTK_BIN(mCheckBox))), + TRUE); gtk_box_pack_start(GTK_BOX(contentsVBox), mCheckBox, FALSE, FALSE, 0); } // Add a dropdown menu if (aType == TYPE_SELECT) { // Build up a GtkMenu containing the items GtkWidget* menu = gtk_menu_new(); for (PRUint32 i = 0; i < mItemCount; ++i) { GtkWidget* item = gtk_menu_item_new_with_label(mItemList[i].get());