From 4af93301e31bd402433a80e6007744932726d381 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Wed, 14 Dec 2011 02:14:54 +0100 Subject: [PATCH] Use new GTK+ 3 API to align coords of throbber Once again existing API is no longer reliable. --- katze/katze-throbber.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/katze/katze-throbber.c b/katze/katze-throbber.c index 0ffc74aa..d8c71b93 100644 --- a/katze/katze-throbber.c +++ b/katze/katze-throbber.c @@ -901,8 +901,14 @@ katze_throbber_aligned_coords (GtkWidget* widget, gtk_misc_get_padding (GTK_MISC (widget), &xpad, &ypad); #endif + #if GTK_CHECK_VERSION (3, 0, 0) + allocation.width = gtk_widget_get_allocated_width (widget); + allocation.height = gtk_widget_get_allocated_height (widget); + gtk_widget_get_preferred_size (widget, &requisition, NULL); + #else gtk_widget_get_allocation (widget, &allocation); gtk_widget_size_request (widget, &requisition); + #endif *ax = floor (allocation.x + xpad + ((allocation.width - requisition.width) * xalign)); *ay = floor (allocation.y + ypad