From 9e6f220a5420a8ec428c853d53de30c29dd88fe5 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Mon, 18 Jul 2011 16:23:35 -0700 Subject: ui/hob: change wording in build complete dialog The 'View Log' button is potentially confusing to existing users of the system who may be expecting to be shown the on disk logs of the build. Instead use 'View Messages'. Addresses [YOCTO #1222] (Bitbake rev: 105bfe3562235fb586be4b4179bb34b2e94ef234) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/hob.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/bb/ui/hob.py') diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py index e0380dd11e..df0ebe2328 100644 --- a/bitbake/lib/bb/ui/hob.py +++ b/bitbake/lib/bb/ui/hob.py @@ -411,13 +411,13 @@ class MainWindow (gtk.Window): for f in self.files_to_clean: os.remove(f) - lbl = "Build completed\n\nClick 'Edit Image' to start another build or 'View Log' to view the build log." + lbl = "Build completed\n\nClick 'Edit Image' to start another build or 'View Messages' to view the messages output during the build." if self.handler.building == "image" and self.build_succeeded: deploy = self.handler.get_image_deploy_dir() lbl = lbl + "\nBrowse folder of built images." % (deploy, deploy) dialog = CrumbsDialog(self, lbl) - dialog.add_button("View Log", gtk.RESPONSE_CANCEL) + dialog.add_button("View Messages", gtk.RESPONSE_CANCEL) dialog.add_button("Edit Image", gtk.RESPONSE_OK) response = dialog.run() dialog.destroy() -- cgit v1.2.3-54-g00ecf