Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/chat
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-06-23 20:08:58 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-06-23 20:08:58 (GMT)
commit7026006efd983c42b6726af5dc7a72943f806331 (patch)
treebd9fc2e7f3840d870d022b81c2a69d04747c91c8 /sugar/chat
parentd0cbce6d6dc4ee2f06e88741e34f511265465614 (diff)
Make the send button larger and remove border
Diffstat (limited to 'sugar/chat')
-rw-r--r--sugar/chat/ChatEditor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sugar/chat/ChatEditor.py b/sugar/chat/ChatEditor.py
index c6f2d61..f6824fc 100644
--- a/sugar/chat/ChatEditor.py
+++ b/sugar/chat/ChatEditor.py
@@ -39,7 +39,7 @@ class ChatEditor(gtk.HBox):
self._notebook.show()
send_button = gtk.Button("Send")
- send_button.set_border_width(6)
+ send_button.set_size_request(60, -1)
send_button.connect('clicked', self.__send_button_clicked_cb)
self.pack_start(send_button, False, True)
send_button.show()