summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/builder.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py
index 1a06dd741a..8390a0cf06 100755
--- a/bitbake/lib/bb/ui/crumbs/builder.py
+++ b/bitbake/lib/bb/ui/crumbs/builder.py
@@ -734,7 +734,9 @@ class Builder(gtk.Window):
734 flags = gtk.DIALOG_MODAL 734 flags = gtk.DIALOG_MODAL
735 | gtk.DIALOG_DESTROY_WITH_PARENT 735 | gtk.DIALOG_DESTROY_WITH_PARENT
736 | gtk.DIALOG_NO_SEPARATOR) 736 | gtk.DIALOG_NO_SEPARATOR)
737 button = dialog.add_button("Close", gtk.RESPONSE_YES) 737 button = dialog.add_button("Cancel", gtk.RESPONSE_NO)
738 HobAltButton.style_button(button)
739 button = dialog.add_button("OK", gtk.RESPONSE_YES)
738 HobButton.style_button(button) 740 HobButton.style_button(button)
739 response = dialog.run() 741 response = dialog.run()
740 if response == gtk.RESPONSE_YES: 742 if response == gtk.RESPONSE_YES: