From 6b42bebeea19df88b2e17998129ebe72d79237e6 Mon Sep 17 00:00:00 2001 From: Eitan Isaacson Date: Mon, 12 Jul 2010 10:57:41 -0700 Subject: Fix syntax issues with highlighting. --- caribou/ui/keyboard.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'caribou') 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): -- cgit v1.2.1