diff options
Diffstat (limited to 'grc/gui/Element.py')
-rw-r--r-- | grc/gui/Element.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/grc/gui/Element.py b/grc/gui/Element.py index 67e8e10916..18fb321929 100644 --- a/grc/gui/Element.py +++ b/grc/gui/Element.py @@ -106,6 +106,7 @@ class Element(object): window.draw_rectangle(gc, False, aX, aY, W, H) for (x1, y1), (x2, y2) in self._lines_list: gc.set_foreground(border_color) + gc.set_background(bg_color) window.draw_line(gc, X+x1, Y+y1, X+x2, Y+y2) def rotate(self, rotation): |