Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Utils.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-01-20 19:11:48 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-01-21 11:51:12 (GMT)
commit15b9b66af1b92f19cac95ae8c56c78a2800b329d (patch)
tree664b0970a47a8dfeee7f1e0a98959a53b05abf51 /Utils.py
parent75973296fa523fcce147e86e79280639ca6c1e75 (diff)
...
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)