diff options
Diffstat (limited to 'bitbake/lib')
| -rwxr-xr-x | bitbake/lib/bb/ui/crumbs/builddetailspage.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builddetailspage.py b/bitbake/lib/bb/ui/crumbs/builddetailspage.py index 4d2d947d21..8d76ade6a4 100755 --- a/bitbake/lib/bb/ui/crumbs/builddetailspage.py +++ b/bitbake/lib/bb/ui/crumbs/builddetailspage.py | |||
| @@ -230,18 +230,21 @@ class BuildDetailsPage (HobPage): | |||
| 230 | # create button 'Edit packages' | 230 | # create button 'Edit packages' |
| 231 | action_button = HobButton(primary_action) | 231 | action_button = HobButton(primary_action) |
| 232 | action_button.set_size_request(-1, 40) | 232 | action_button.set_size_request(-1, 40) |
| 233 | action_button.set_tooltip_text("Edit the %s parameters" % actions) | ||
| 233 | action_button.connect('clicked', self.failure_primary_action_button_clicked_cb, primary_action) | 234 | action_button.connect('clicked', self.failure_primary_action_button_clicked_cb, primary_action) |
| 234 | build_fail_tab.attach(action_button, 4, 13, 9, 12) | 235 | build_fail_tab.attach(action_button, 4, 13, 9, 12) |
| 235 | 236 | ||
| 236 | if log_file: | 237 | if log_file: |
| 237 | open_log_button = HobAltButton("Open log") | 238 | open_log_button = HobAltButton("Open log") |
| 238 | open_log_button.set_relief(gtk.RELIEF_HALF) | 239 | open_log_button.set_relief(gtk.RELIEF_HALF) |
| 240 | open_log_button.set_tooltip_text("Open the build's log file") | ||
| 239 | open_log_button.connect('clicked', self.failure_open_log_button_clicked_cb, log_file) | 241 | open_log_button.connect('clicked', self.failure_open_log_button_clicked_cb, log_file) |
| 240 | build_fail_tab.attach(open_log_button, 14, 23, 9, 12) | 242 | build_fail_tab.attach(open_log_button, 14, 23, 9, 12) |
| 241 | 243 | ||
| 242 | attach_pos = (24 if log_file else 14) | 244 | attach_pos = (24 if log_file else 14) |
| 243 | file_bug_button = HobAltButton('File a bug') | 245 | file_bug_button = HobAltButton('File a bug') |
| 244 | file_bug_button.set_relief(gtk.RELIEF_HALF) | 246 | file_bug_button.set_relief(gtk.RELIEF_HALF) |
| 247 | file_bug_button.set_tooltip_text("Open the Yocto Project bug tracking website") | ||
| 245 | file_bug_button.connect('clicked', self.failure_activate_file_bug_link_cb) | 248 | file_bug_button.connect('clicked', self.failure_activate_file_bug_link_cb) |
| 246 | build_fail_tab.attach(file_bug_button, attach_pos, attach_pos + 9, 9, 12) | 249 | build_fail_tab.attach(file_bug_button, attach_pos, attach_pos + 9, 9, 12) |
| 247 | 250 | ||
