Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/TextThought.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/TextThought.py')
-rw-r--r--src/TextThought.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/TextThought.py b/src/TextThought.py
index 5c04197..6f7599f 100644
--- a/src/TextThought.py
+++ b/src/TextThought.py
@@ -818,7 +818,8 @@ class TextThought (ResizableThought):
self.textview.modify_font(font_desc)
r, g, b = utils.gtk_to_cairo_color(self.foreground_color)
- rgba = gtk.gdk.Color(int(65535 * r), int(65535 * g), int(65535 * b))
+ rgba = gtk.gdk.Color(
+ int(65535 * r), int(65535 * g), int(65535 * b))
self.textview.modify_text(gtk.STATE_NORMAL, rgba)
self.textview.get_buffer().set_text(self.text)