Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--pippy_app.py5
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index ed85159..bb6f337 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+* #5053: Reduce white space around boxes (morgs)
* #6621: set entry sensitive not editable (morgs)
* Add license to activity.py (morgs)
* #6743: border around gtk.entry (morgs)
diff --git a/pippy_app.py b/pippy_app.py
index 275b259..37ca3a4 100644
--- a/pippy_app.py
+++ b/pippy_app.py
@@ -150,7 +150,7 @@ class Chat(ViewSourceActivity):
def make_root(self):
conversation = hippo.CanvasBox(
- spacing=4,
+ spacing=0,
background_color=COLOR_WHITE.get_int())
self.conversation = conversation
@@ -287,7 +287,7 @@ class Chat(ViewSourceActivity):
xalign=hippo.ALIGNMENT_START)
rb.append(message)
- box = hippo.CanvasBox(padding=4)
+ box = hippo.CanvasBox(padding=2)
box.append(rb)
self.conversation.append(box)
@@ -507,6 +507,7 @@ CHAT_ICON=\
"""
CHAT_NEWS="""
+* #5053: Reduce white space around boxes (morgs)
* #6621: set entry sensitive not editable (morgs)
* Add license to activity.py (morgs)
* #6743: border around gtk.entry (morgs)