Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chat
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2006-04-26 20:43:27 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2006-04-26 20:43:27 (GMT)
commitcc865bba52780d1f831830cce93ef0874a341eb8 (patch)
treed2ade8818a8f2e029eb288522bc7f4dc7465c7d1 /chat
parentbcfe586405ca0571f491e6547c75c658ece50e8b (diff)
Hide the cursor on the chat view
Diffstat (limited to 'chat')
-rwxr-xr-xchat/chat.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/chat/chat.py b/chat/chat.py
index 8c5a10a..5b0a99c 100755
--- a/chat/chat.py
+++ b/chat/chat.py
@@ -46,6 +46,7 @@ class Chat(activity.Activity):
self._chat_view = richtext.RichTextView()
self._chat_view.connect("link-clicked", self.__link_clicked_cb)
self._chat_view.set_editable(False)
+ self._chat_view.set_cursor_visible(False)
sw.add(self._chat_view)
self._chat_view.show()
chat_vbox.pack_start(sw)