From 4371fb08832dc660150375cab15aece896656e64 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 15 Mar 2007 20:56:29 +0000 Subject: Update another get_width_request() for new hippo --- (limited to 'sugar') diff --git a/sugar/graphics/canvasicon.py b/sugar/graphics/canvasicon.py index 03b0d2b..23ac60d 100644 --- a/sugar/graphics/canvasicon.py +++ b/sugar/graphics/canvasicon.py @@ -374,7 +374,8 @@ class CanvasIcon(hippo.CanvasBox, hippo.CanvasItem): # TODO: Any better place to do this? [min_width, natural_width] = self.get_width_request() - popup.props.box_width = max(popup.get_width_request(), min_width) + [pop_min_width, pop_natural_width] = popup.get_width_request() + popup.props.box_width = max(pop_min_width, min_width) [width, height] = self.get_allocation() y += height -- cgit v0.9.1