From 44c0dcbbf9821d8bd52bd468a19c59fcd43e7643 Mon Sep 17 00:00:00 2001 From: Morgan Collett Date: Tue, 25 Sep 2007 20:04:01 +0000 Subject: Space between RoundBoxes --- diff --git a/chat.py b/chat.py index 78c46f4..0d66ed6 100644 --- a/chat.py +++ b/chat.py @@ -220,7 +220,7 @@ class Chat(Activity): rb = CanvasRoundBox(background_color=color_fill, border_color=color_stroke, - padding=3) + padding=4) rb.props.border_color = color_stroke # Bug #3742 if not status_message: @@ -230,7 +230,9 @@ class Chat(Activity): rb.append(name) rb.append(message) - self.conversation.append(rb) + box = hippo.CanvasBox(padding=4) + box.append(rb) + self.conversation.append(box) def entry_activate_cb(self, entry): text = entry.props.text -- cgit v0.9.1