Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Widgets.py
diff options
context:
space:
mode:
Diffstat (limited to 'Widgets.py')
-rw-r--r--Widgets.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Widgets.py b/Widgets.py
index 90c37ae..b591e02 100644
--- a/Widgets.py
+++ b/Widgets.py
@@ -732,15 +732,18 @@ class PollCanvas(Gtk.Box):
if poll.active and not previewing:
button = Gtk.Button(_("Vote"))
button.connect('clicked', poll.activity.button_vote_cb)
+ button.props.margin = 10
tabla.attach(button, 0, 1, row, row + 1)
elif previewing:
button = Gtk.Button(_("Edit Poll"))
button.connect('clicked', poll.activity.button_edit_clicked)
+ button.props.margin = 10
tabla.attach(button, 0, 1, row, row + 1)
button = Gtk.Button(_("Save Poll"))
button.connect('clicked', self._button_save_cb)
+ button.props.margin = 10
tabla.attach(button, 1, 2, row, row + 1)
self.show_all()