Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorC. Scott Ananian <cscott@laptop.org>2007-12-11 19:33:16 (GMT)
committer C. Scott Ananian <cscott@laptop.org>2007-12-11 19:33:16 (GMT)
commit3b301f699767e42d8c926dc83eff16396f06075f (patch)
treed97bcb946b98220004f794b49de666f8a53fac12 /activity.py
parentcef6bbd0952b90d26760f10f7887a34b87849ede (diff)
Reset text color to black before starting pippy script.
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/activity.py b/activity.py
index ec15a16..f0602e1 100644
--- a/activity.py
+++ b/activity.py
@@ -203,7 +203,7 @@ class PippyActivity(Activity):
def gobutton_cb(self, button):
self._vte.grab_focus()
- self._vte.feed("\x1B[H\x1B[J")
+ self._vte.feed("\x1B[H\x1B[J\x1B[0;39m")
# FIXME: We're losing an odd race here
# gtk.main_iteration(block=False)