Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scoreboard.py
diff options
context:
space:
mode:
Diffstat (limited to 'scoreboard.py')
-rw-r--r--scoreboard.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scoreboard.py b/scoreboard.py
index e01ede4..d57543c 100644
--- a/scoreboard.py
+++ b/scoreboard.py
@@ -37,7 +37,7 @@ class Scoreboard(Gtk.EventBox):
fill_box = Gtk.EventBox()
fill_box.modify_bg(Gtk.StateType.NORMAL, Gdk.color_parse('#4c4d4f'))
fill_box.show()
- self.vbox.pack_end(fill_box, True, True)
+ self.vbox.pack_end(fill_box, True, True, 0)
scroll = Gtk.ScrolledWindow()
scroll.props.shadow_type = Gtk.ShadowType.NONE
@@ -59,7 +59,7 @@ class Scoreboard(Gtk.EventBox):
player = PlayerScoreboard(nick, fill_color, stroke_color, score)
player.show()
self.players[buddy] = player
- self.vbox.pack_start(player, False, False)
+ self.vbox.pack_start(player, False, False, 0)
if score == -1:
player.set_wait_mode(True)
self.show_all()