summaryrefslogtreecommitdiff
path: root/caribou
diff options
context:
space:
mode:
authorEitan Isaacson <eitan@monotonous.org>2010-07-12 10:57:41 -0700
committerEitan Isaacson <eitan@monotonous.org>2010-07-12 10:57:41 -0700
commit6b42bebeea19df88b2e17998129ebe72d79237e6 (patch)
treead51ea538859b7de5d44895ad97d732edc404d3c /caribou
parentd648652f0095e80b72d6a3fc3e38e9e1fb4d1784 (diff)
downloadcaribou-6b42bebeea19df88b2e17998129ebe72d79237e6.tar.gz
Fix syntax issues with highlighting.
Diffstat (limited to 'caribou')
-rw-r--r--caribou/ui/keyboard.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/caribou/ui/keyboard.py b/caribou/ui/keyboard.py
index 0586778..fe98614 100644
--- a/caribou/ui/keyboard.py
+++ b/caribou/ui/keyboard.py
@@ -64,10 +64,10 @@ class KeyboardPreferences:
normal_color_string = client.get_string(const.CARIBOU_GCONF +
"/normal_color") or "grey80"
normal_color = gtk.gdk.Color(normal_color_string)
- normal_state_color_button.set_color(normal_color)
- normal_state_color_button.connect("color-set",
- self._on_normal_state_color_set,
- client)
+ normal_color_button.set_color(normal_color)
+ normal_color_button.connect("color-set",
+ self._on_normal_state_color_set,
+ client)
mouse_over_color_button = builder.get_object("mouse_over_color_button")
mouse_over_color_string = client.get_string(const.CARIBOU_GCONF +
@@ -347,7 +347,7 @@ class CaribouKeyboard(gtk.Notebook):
normal_color = self.client.get_string(const.CARIBOU_GCONF +
"/normal_color") or "grey80"
mouse_over_color = self.client.get_string(const.CARIBOU_GCONF +
- "/mouse_over_color") or
+ "/mouse_over_color") or \
"yellow"
n_pages = self.get_n_pages()
for i in range(n_pages):