[hamster-applet/2_28_no_bars] let's start without using any color at all



commit be80bf45e4b1bf3e771d4e198eecd03b11246a21
Author: Toms Bauģis <toms baugis gmail com>
Date:   Tue Nov 10 19:06:47 2009 +0000

    let's start without using any color at all

 hamster/charting.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/hamster/charting.py b/hamster/charting.py
index 55d6238..615f21c 100644
--- a/hamster/charting.py
+++ b/hamster/charting.py
@@ -161,7 +161,7 @@ class Chart(graphics.Area):
 
     def draw_bar(self, x, y, w, h, color = None):
         """ draws a simple bar"""
-        base_color = color or self.bar_base_color or (220, 220, 220)
+        base_color = (0, 0, 0)
         self.fill_area(x, y, w, h, base_color)
 
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]