summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/ui/crumbs/hig.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py
index 3ca838279d..cf73145442 100644
--- a/bitbake/lib/bb/ui/crumbs/hig.py
+++ b/bitbake/lib/bb/ui/crumbs/hig.py
@@ -64,7 +64,7 @@ class CrumbsMessageDialog(CrumbsDialog):
64 """ 64 """
65 def __init__(self, parent=None, label="", icon=gtk.STOCK_INFO): 65 def __init__(self, parent=None, label="", icon=gtk.STOCK_INFO):
66 super(CrumbsMessageDialog, self).__init__("", parent, gtk.DIALOG_DESTROY_WITH_PARENT) 66 super(CrumbsMessageDialog, self).__init__("", parent, gtk.DIALOG_DESTROY_WITH_PARENT)
67 67
68 self.set_border_width(6) 68 self.set_border_width(6)
69 self.vbox.set_property("spacing", 12) 69 self.vbox.set_property("spacing", 12)
70 self.action_area.set_property("spacing", 12) 70 self.action_area.set_property("spacing", 12)
@@ -208,7 +208,7 @@ class AdvancedSettingDialog (CrumbsDialog):
208 hbox.pack_start(port_entry, expand=False, fill=False) 208 hbox.pack_start(port_entry, expand=False, fill=False)
209 209
210 details_button = HobAltButton("Details") 210 details_button = HobAltButton("Details")
211 details_button.connect("clicked", self.details_cb, parent, protocol) 211 details_button.connect("clicked", self.details_cb, parent, protocol)
212 hbox.pack_start(details_button, expand=False, fill=False) 212 hbox.pack_start(details_button, expand=False, fill=False)
213 213
214 hbox.show_all() 214 hbox.show_all()
@@ -1036,7 +1036,7 @@ class LayerSelectionDialog (CrumbsDialog):
1036 # create visual elements on the dialog 1036 # create visual elements on the dialog
1037 self.create_visual_elements() 1037 self.create_visual_elements()
1038 self.connect("response", self.response_cb) 1038 self.connect("response", self.response_cb)
1039 1039
1040 def create_visual_elements(self): 1040 def create_visual_elements(self):
1041 layer_widget, self.layer_store = self.gen_layer_widget(self.layers, self.all_layers, self, None) 1041 layer_widget, self.layer_store = self.gen_layer_widget(self.layers, self.all_layers, self, None)
1042 layer_widget.set_size_request(450, 250) 1042 layer_widget.set_size_request(450, 250)
@@ -1227,7 +1227,7 @@ class ImageSelectionDialog (CrumbsDialog):
1227 for f in self.image_list: 1227 for f in self.image_list:
1228 if f.startswith(self.image_store[path][0] + '.'): 1228 if f.startswith(self.image_store[path][0] + '.'):
1229 self.image_names.append(f) 1229 self.image_names.append(f)
1230 break 1230 break
1231 iter = self.image_store.iter_next(iter) 1231 iter = self.image_store.iter_next(iter)
1232 1232
1233class ProxyDetailsDialog (CrumbsDialog): 1233class ProxyDetailsDialog (CrumbsDialog):