diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mark-all-read/mark-all-read.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/mark-all-read/mark-all-read.c b/plugins/mark-all-read/mark-all-read.c index 62b8102d9d..6e527d653c 100644 --- a/plugins/mark-all-read/mark-all-read.c +++ b/plugins/mark-all-read/mark-all-read.c @@ -38,6 +38,9 @@ #include <shell/e-shell-view.h> #include <shell/e-shell-window.h> +/* backward-compatibility cruft */ +#include "e-util/gtk-compat.h" + #define PRIMARY_TEXT \ N_("Also mark messages in subfolders?") #define SECONDARY_TEXT \ @@ -79,7 +82,7 @@ box_mapped_cb (GtkWidget *box, /* In order to get decent line wrapping we need to wait until the * box containing the buttons is mapped, and then resize the label * to the same width as the box. */ - gtk_widget_size_request (box, &requisition); + gtk_widget_get_preferred_size (box, &requisition, NULL); gtk_widget_set_size_request (label, requisition.width, -1); } |