Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/TextThought.py
diff options
context:
space:
mode:
authorDonScorgie <DonScorgie@8f060a39-251c-0410-b1f3-431655927647>2006-11-08 23:26:45 (GMT)
committer DonScorgie <DonScorgie@8f060a39-251c-0410-b1f3-431655927647>2006-11-08 23:26:45 (GMT)
commitbca4937a2966fbf2926c5c77d070fe04d9616660 (patch)
treefd3948323cd80921da990916e61e7b98b4262f34 /src/TextThought.py
parent32675608d81a991157f335183e77bc2d8c04965e (diff)
* src/utils.py:
* src/TextThought.py: Use Tango palette colours, which are slightly less jarring, though feel somewhat strange ;) Text selection is still bright red Primary thought is "Butter" Selected thoughts are "Sky Blue" git-svn-id: http://labyrinth.googlecode.com/svn/trunk@131 8f060a39-251c-0410-b1f3-431655927647
Diffstat (limited to 'src/TextThought.py')
-rw-r--r--src/TextThought.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TextThought.py b/src/TextThought.py
index 7e4e638..0c4b249 100644
--- a/src/TextThought.py
+++ b/src/TextThought.py
@@ -195,9 +195,9 @@ class TextThought (BaseThought.BaseThought):
context.line_to (self.lr[0]-5, self.ul[1])
context.stroke ()
if self.index > self.end_index:
- bgsel = pango.AttrBackground (65535, 0, 0, self.end_index, self.index)
+ bgsel = pango.AttrBackground (61423, 10537, 10537, self.end_index, self.index)
else:
- bgsel = pango.AttrBackground (65535, 0, 0, self.index, self.end_index)
+ bgsel = pango.AttrBackground (61423, 10537, 10537, self.index, self.end_index)
self.attrlist.insert (bgsel)
self.layout.set_attributes(self.attrlist)