Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchat/chat.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/chat/chat.py b/chat/chat.py
index 33026b2..038d35a 100755
--- a/chat/chat.py
+++ b/chat/chat.py
@@ -235,7 +235,10 @@ class ChatActivity(activity.Activity):
return buddy.chat()
def run(self):
- gtk.main()
+ try:
+ gtk.main()
+ except KeyboardInterrupt:
+ pass
def main():
app = ChatActivity()