Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'Utils.py')
-rw-r--r--Utils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Utils.py b/Utils.py
index 958c2f5..a816bb9 100644
--- a/Utils.py
+++ b/Utils.py
@@ -206,6 +206,10 @@ class ScrolledBox(gtk.EventBox):
self._right.connect('clicked', self._scroll_cb, 'right')
box.pack_start(self._right, False, False, 0)
+ def modify_fg(self, state, bg):
+ gtk.EventBox.modify_fg(self, state, bg)
+ self._viewport.get_parent().modify_fg(state, bg)
+
def modify_bg(self, state, bg):
gtk.EventBox.modify_bg(self, state, bg)
self._viewport.get_parent().modify_bg(state, bg)