8730: Error Report Assistant fails

This commit is contained in:
Doug Blank 2015-07-18 21:17:40 -04:00
parent 7c40164022
commit addf9169f7

View File

@ -301,7 +301,11 @@ class ErrorReportAssistant(Gtk.Assistant):
error_details_box.pack_start(button_box, False, False, 0)
error_details_box.set_hexpand(True)
error_details_box.set_vexpand(True)
error_details_box.set_margin_start(12)
error_details_box.set_margin_left(12)
error_details_box.set_margin_right(12)
error_details_box.set_margin_top(12)
error_details_box.set_margin_bottom(12)
error_details_frame = Gtk.Frame()
error_details_frame.set_border_width(3)
@ -381,7 +385,10 @@ class ErrorReportAssistant(Gtk.Assistant):
sys_information_box.pack_start(button_box, False, False, 0)
sys_information_box.set_hexpand(True)
sys_information_box.set_vexpand(True)
sys_information_box.set_margin_start(12)
sys_information_box.set_margin_top(12)
sys_information_box.set_margin_bottom(12)
sys_information_box.set_margin_left(12)
sys_information_box.set_margin_right(12)
sys_information_frame = Gtk.Frame()
sys_information_frame.set_border_width(3)
@ -453,7 +460,10 @@ class ErrorReportAssistant(Gtk.Assistant):
user_information_box.pack_start(button_box, False, False, 0)
user_information_box.set_hexpand(True)
user_information_box.set_vexpand(True)
user_information_box.set_margin_start(12)
user_information_box.set_margin_top(12)
user_information_box.set_margin_bottom(12)
user_information_box.set_margin_left(12)
user_information_box.set_margin_right(12)
user_information_frame = Gtk.Frame()
user_information_frame.set_border_width(3)
@ -517,7 +527,10 @@ class ErrorReportAssistant(Gtk.Assistant):
summary_box.pack_start(sw_frame, True, True, 0)
summary_box.set_hexpand(True)
summary_box.set_vexpand(True)
summary_box.set_margin_start(12)
summary_box.set_margin_top(12)
summary_box.set_margin_bottom(12)
summary_box.set_margin_left(12)
summary_box.set_margin_right(12)
summary_frame = Gtk.Frame()
summary_frame.set_border_width(3)
@ -583,7 +596,10 @@ class ErrorReportAssistant(Gtk.Assistant):
url_box.pack_start(url_label, True, True, 0)
url_box.pack_start(url_button_vbox, False, False, 0)
url_box.set_hexpand(True)
url_box.set_margin_start(12)
url_box.set_margin_top(12)
url_box.set_margin_bottom(12)
url_box.set_margin_left(12)
url_box.set_margin_right(12)
url_frame = Gtk.Frame()
url_frame.add(url_box)
@ -607,7 +623,10 @@ class ErrorReportAssistant(Gtk.Assistant):
clip_box.pack_start(clip_label, True, True, 0)
clip_box.pack_start(clip_button_vbox, False, False, 0)
clip_box.set_hexpand(True)
clip_box.set_margin_start(12)
clip_box.set_margin_left(12)
clip_box.set_margin_right(12)
clip_box.set_margin_top(12)
clip_box.set_margin_bottom(12)
clip_frame = Gtk.Frame()
clip_frame.add(clip_box)
@ -616,7 +635,10 @@ class ErrorReportAssistant(Gtk.Assistant):
inner_box.pack_start(label, False, False, 0)
inner_box.pack_start(clip_frame, False, False, 0)
inner_box.pack_start(url_frame, False, False, 0)
inner_box.set_margin_start(12)
inner_box.set_margin_top(12)
inner_box.set_margin_bottom(12)
inner_box.set_margin_left(12)
inner_box.set_margin_right(12)
outer_frame = Gtk.Frame()
outer_frame.set_border_width(3)