- Timestamp:
- 03/22/09 03:54:13 (3 years ago)
- Files:
-
- 1 modified
-
trunk/pycha/bar.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pycha/bar.py
r176 r177 79 79 80 80 if self.options.shouldFill or (not self.options.stroke.hide): 81 cx.rectangle(x, y, w, h)82 81 83 82 if self.options.shouldFill: 84 83 cx.set_source_rgb(*self.colorScheme[bar.name]) 85 cx.fill_preserve() 84 cx.rectangle(x, y, w, h) 85 cx.fill() 86 86 87 87 if not self.options.stroke.hide: 88 88 cx.set_source_rgb(*hex2rgb(self.options.stroke.color)) 89 cx.rectangle(x, y, w, h) 89 90 cx.stroke() 90 91
