idcard-widget: Use all the space of the event box
authorJavier Jardón <javier.jardon@codethink.co.uk>
Thu, 14 Apr 2011 12:57:23 +0000 (13:57 +0100)
committerJavier Jardón <javier.jardon@codethink.co.uk>
Thu, 14 Apr 2011 12:57:23 +0000 (13:57 +0100)
src/moonshot-idcard-widget.vala

index a4f3073..955d802 100644 (file)
@@ -61,7 +61,7 @@ class IdCardWidget : Box
         var event_box = new EventBox ();
         event_box.add (main_vbox);
         event_box.button_press_event.connect (button_press_cb);
-        add (event_box);
+        this.pack_start (event_box, true, true);
 
         this.show_all ();
         this.hbutton_box.hide ();