summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
index cf7af2b741..e1c7a6719c 100644
--- a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
+++ b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
@@ -167,13 +167,12 @@ class ImageConfigurationPage (HobPage):
167 markup += "dev-manual.html#understanding-and-using-layers\">reference manual</a>." 167 markup += "dev-manual.html#understanding-and-using-layers\">reference manual</a>."
168 self.layer_info_icon = HobInfoButton(markup, self.get_parent()) 168 self.layer_info_icon = HobInfoButton(markup, self.get_parent())
169 169
170 self.progress_box = gtk.HBox(False, 6) 170# self.progress_box = gtk.HBox(False, 6)
171 self.progress_bar = HobProgressBar() 171 self.progress_bar = HobProgressBar()
172 self.progress_box.pack_start(self.progress_bar, expand=True, fill=True) 172# self.progress_box.pack_start(self.progress_bar, expand=True, fill=True)
173 self.stop_button = HobAltButton("Stop") 173 self.stop_button = HobAltButton("Stop")
174 self.stop_button.connect("clicked", self.stop_button_clicked_cb) 174 self.stop_button.connect("clicked", self.stop_button_clicked_cb)
175 self.progress_box.pack_end(self.stop_button, expand=False, fill=False) 175# self.progress_box.pack_end(stop_button, expand=False, fill=False)
176
177 self.machine_separator = gtk.HSeparator() 176 self.machine_separator = gtk.HSeparator()
178 177
179 def set_config_machine_layout(self, show_progress_bar = False): 178 def set_config_machine_layout(self, show_progress_bar = False):
@@ -183,7 +182,9 @@ class ImageConfigurationPage (HobPage):
183 self.gtable.attach(self.layer_button, 14, 36, 7, 12) 182 self.gtable.attach(self.layer_button, 14, 36, 7, 12)
184 self.gtable.attach(self.layer_info_icon, 36, 40, 7, 11) 183 self.gtable.attach(self.layer_info_icon, 36, 40, 7, 11)
185 if show_progress_bar: 184 if show_progress_bar:
186 self.gtable.attach(self.progress_box, 0, 40, 15, 19) 185 #self.gtable.attach(self.progress_box, 0, 40, 15, 18)
186 self.gtable.attach(self.progress_bar, 0, 37, 15, 18)
187 self.gtable.attach(self.stop_button, 37, 40, 15, 18, 0, 0)
187 self.gtable.attach(self.machine_separator, 0, 40, 13, 14) 188 self.gtable.attach(self.machine_separator, 0, 40, 13, 14)
188 189
189 def create_config_baseimg(self): 190 def create_config_baseimg(self):
@@ -232,14 +233,14 @@ class ImageConfigurationPage (HobPage):
232 233
233 # create button "Build image" 234 # create button "Build image"
234 self.just_bake_button = HobButton("Build image") 235 self.just_bake_button = HobButton("Build image")
235 self.just_bake_button.set_size_request(205, 49) 236 #self.just_bake_button.set_size_request(205, 49)
236 self.just_bake_button.set_tooltip_text("Build target image") 237 self.just_bake_button.set_tooltip_text("Build target image")
237 self.just_bake_button.connect("clicked", self.just_bake_button_clicked_cb) 238 self.just_bake_button.connect("clicked", self.just_bake_button_clicked_cb)
238 button_box.pack_end(self.just_bake_button, expand=False, fill=False) 239 button_box.pack_end(self.just_bake_button, expand=False, fill=False)
239 240
240 # create button "Edit Image" 241 # create button "Edit Image"
241 self.edit_image_button = HobAltButton("Edit image") 242 self.edit_image_button = HobAltButton("Edit image")
242 self.edit_image_button.set_size_request(205, 49) 243 #self.edit_image_button.set_size_request(205, 49)
243 self.edit_image_button.set_tooltip_text("Edit target image") 244 self.edit_image_button.set_tooltip_text("Edit target image")
244 self.edit_image_button.connect("clicked", self.edit_image_button_clicked_cb) 245 self.edit_image_button.connect("clicked", self.edit_image_button_clicked_cb)
245 button_box.pack_end(self.edit_image_button, expand=False, fill=False) 246 button_box.pack_end(self.edit_image_button, expand=False, fill=False)