From patchwork Thu Apr 12 15:46:27 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,3/3] Hob: A minor fix on tooltip Date: Thu, 12 Apr 2012 15:46:27 -0000 From: Dongxiao Xu X-Patchwork-Id: 25697 Message-Id: To: bitbake-devel@lists.openembedded.org Signed-off-by: Dongxiao Xu --- lib/bb/ui/crumbs/hig.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/bb/ui/crumbs/hig.py b/lib/bb/ui/crumbs/hig.py index 5cc8a59..b0cfcaf 100644 --- a/lib/bb/ui/crumbs/hig.py +++ b/lib/bb/ui/crumbs/hig.py @@ -392,7 +392,7 @@ class AdvancedSettingDialog (CrumbsDialog): j = 1 for image_type in self.image_types: self.image_types_checkbuttons[image_type] = gtk.CheckButton(image_type) - self.image_types_checkbuttons[image_type].set_tooltip_text("Build an %s image" % image_type) + self.image_types_checkbuttons[image_type].set_tooltip_text("Build a(n) %s image" % image_type) table.attach(self.image_types_checkbuttons[image_type], j, j + 4, i, i + 1) if image_type in self.configuration.image_fstypes.split(): self.image_types_checkbuttons[image_type].set_active(True)