Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services/nm/bubble.py
diff options
context:
space:
mode:
Diffstat (limited to 'services/nm/bubble.py')
-rw-r--r--services/nm/bubble.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/services/nm/bubble.py b/services/nm/bubble.py
index 52710a6..24e68ab 100644
--- a/services/nm/bubble.py
+++ b/services/nm/bubble.py
@@ -103,7 +103,8 @@ class Bubble(hippo.CanvasBox, hippo.CanvasItem):
cr.set_line_width(line_width)
cr.stroke();
- self._paint_progress_bar(cr, x, y, width, height, line_width)
+ 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):
prog_x = x + line_width