summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-08-16 11:48:00 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-16 11:21:03 +0100
commit1b3f8ac9cffe29cd3b066544697df6c2e4292398 (patch)
treeff6a49f788f35e3fd866ddc3eda485cc5313c99a /bitbake
parent840a427ed2943136fba60c721d19870c79dabe23 (diff)
downloadpoky-1b3f8ac9cffe29cd3b066544697df6c2e4292398.tar.gz
bitbake: hob/retrieveimagedialog: change labels
Some labels needed to be changed in order to respect the convention. [YOCTO #4999] (Bitbake rev: 110b485eac6adea242297b7942da8710403c465a) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hig/retrieveimagedialog.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig/retrieveimagedialog.py b/bitbake/lib/bb/ui/crumbs/hig/retrieveimagedialog.py
index 060b4fdf23..9017139850 100644
--- a/bitbake/lib/bb/ui/crumbs/hig/retrieveimagedialog.py
+++ b/bitbake/lib/bb/ui/crumbs/hig/retrieveimagedialog.py
@@ -43,7 +43,9 @@ class RetrieveImageDialog (gtk.FileChooserDialog):
43 vbox.get_children()[0].get_children()[0].get_children()[0].remove(child) 43 vbox.get_children()[0].get_children()[0].get_children()[0].remove(child)
44 44
45 label1 = gtk.Label() 45 label1 = gtk.Label()
46 label1.set_text("File system: " + self.directory) 46 label1.set_text("File system" + self.directory)
47 label1.show() 47 label1.show()
48 vbox.get_children()[0].get_children()[0].get_children()[0].pack_start(label1, expand=False, fill=False, padding=0) 48 vbox.get_children()[0].get_children()[0].get_children()[0].pack_start(label1, expand=False, fill=False, padding=0)
49 vbox.get_children()[0].get_children()[1].get_children()[0].hide() 49 vbox.get_children()[0].get_children()[1].get_children()[0].hide()
50
51 self.get_children()[0].get_children()[1].get_children()[0].set_label("Select")