summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/hob.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/hob.py')
-rw-r--r--bitbake/lib/bb/ui/hob.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py
index 5906251f41..e0427658d9 100644
--- a/bitbake/lib/bb/ui/hob.py
+++ b/bitbake/lib/bb/ui/hob.py
@@ -183,13 +183,6 @@ class MainWindow (gtk.Window):
183 183
184 def data_generated(self, handler): 184 def data_generated(self, handler):
185 self.generating = False 185 self.generating = False
186 self.image_combo.set_model(self.model.images_model())
187 # Without this the image combo is incorrectly sized on first load of the GUI
188 self.image_combo.set_active(0)
189 self.image_combo.set_active(-1)
190
191 if not self.image_combo_id:
192 self.image_combo_id = self.image_combo.connect("changed", self.image_changed_cb)
193 self.enable_widgets() 186 self.enable_widgets()
194 187
195 def machine_combo_changed_cb(self, combo, handler): 188 def machine_combo_changed_cb(self, combo, handler):
@@ -286,6 +279,14 @@ class MainWindow (gtk.Window):
286 pkgsaz_model.set_default_sort_func(None) 279 pkgsaz_model.set_default_sort_func(None)
287 self.pkgsaz_tree.set_model(pkgsaz_model) 280 self.pkgsaz_tree.set_model(pkgsaz_model)
288 281
282 self.image_combo.set_model(self.model.images_model())
283 # Without this the image combo is incorrectly sized on first load of the GUI
284 self.image_combo.set_active(0)
285 self.image_combo.set_active(-1)
286
287 if not self.image_combo_id:
288 self.image_combo_id = self.image_combo.connect("changed", self.image_changed_cb)
289
289 # We want the contents to be alphabetised so create a TreeModelSort to 290 # We want the contents to be alphabetised so create a TreeModelSort to
290 # use in the view 291 # use in the view
291 contents_model = gtk.TreeModelSort(self.model.contents_model()) 292 contents_model = gtk.TreeModelSort(self.model.contents_model())