mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
bitbake: hob: The 'run image' and 'deploy image' dialogs text and alignment corrections
-changed the text shown by both dialogs text -make small tweaks to alignment [YOCTO #2999] (Bitbake rev: b193db13472908b8ec6c670da96ff3b0004e635b) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ed17f44da6
commit
e2b0eaef93
@@ -389,7 +389,13 @@ class ImageDetailsPage (HobPage):
|
|||||||
label = gtk.Label()
|
label = gtk.Label()
|
||||||
label.set_use_markup(True)
|
label.set_use_markup(True)
|
||||||
label.set_alignment(0.0, 0.5)
|
label.set_alignment(0.0, 0.5)
|
||||||
label.set_markup("<span font_desc='12'>Select the image file you want to %s</span>" % primary_action)
|
label.set_padding(12,0)
|
||||||
|
if primary_action == "Run image":
|
||||||
|
label.set_markup("<span font_desc='12'>Select the image file you want to run:</span>")
|
||||||
|
elif primary_action == "Deploy image":
|
||||||
|
label.set_markup("<span font_desc='12'>Select the image file you want to deploy:</span>")
|
||||||
|
else:
|
||||||
|
label.set_markup("<span font_desc='12'>Select the image file you want to %s</span>" % primary_action)
|
||||||
dialog.vbox.pack_start(label, expand=False, fill=False)
|
dialog.vbox.pack_start(label, expand=False, fill=False)
|
||||||
|
|
||||||
# filter created images as action attribution (deploy or run)
|
# filter created images as action attribution (deploy or run)
|
||||||
@@ -418,12 +424,12 @@ class ImageDetailsPage (HobPage):
|
|||||||
sel_btn.set_active(fileitem['is_toggled'])
|
sel_btn.set_active(fileitem['is_toggled'])
|
||||||
sel_btn.connect('toggled', self.table_selected_cb, fileitem)
|
sel_btn.connect('toggled', self.table_selected_cb, fileitem)
|
||||||
if curr_row < 10:
|
if curr_row < 10:
|
||||||
table.attach(sel_btn, 2, 5, curr_row, curr_row + 1)
|
table.attach(sel_btn, 0, 4, curr_row, curr_row + 1, xpadding=24)
|
||||||
else:
|
else:
|
||||||
table.attach(sel_btn, 7, 10, curr_row - 10, curr_row - 9)
|
table.attach(sel_btn, 5, 9, curr_row - 10, curr_row - 9, xpadding=24)
|
||||||
curr_row += 1
|
curr_row += 1
|
||||||
|
|
||||||
dialog.vbox.pack_start(table, expand=False, fill=False, padding = 6)
|
dialog.vbox.pack_start(table, expand=False, fill=False, padding=6)
|
||||||
|
|
||||||
button = dialog.add_button("Cancel", gtk.RESPONSE_CANCEL)
|
button = dialog.add_button("Cancel", gtk.RESPONSE_CANCEL)
|
||||||
HobAltButton.style_button(button)
|
HobAltButton.style_button(button)
|
||||||
|
|||||||
Reference in New Issue
Block a user