Don't draw progress bar when % is 0

This commit is contained in:
Dan Williams 2006-11-01 14:25:31 -05:00
parent cf508c1d22
commit a8fda48c72

View File

@ -103,6 +103,7 @@ class Bubble(hippo.CanvasBox, hippo.CanvasItem):
cr.set_line_width(line_width)
cr.stroke();
if self._percent > 0:
self._paint_progress_bar(cr, x, y, width, height, line_width)
def _paint_progress_bar(self, cr, x, y, width, height, line_width):