summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-03-05 17:02:13 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-20 15:21:35 +0000
commit1aa102b39ee9c5ba4e2070c93cd1c1f1827cc520 (patch)
tree06d3a9e751ad29a9c7d445355e92748b02c8b72c /bitbake
parentf1c35a6ad39eaf8efbf20dab1441f52613bb860b (diff)
downloadpoky-1aa102b39ee9c5ba4e2070c93cd1c1f1827cc520.tar.gz
ui/crumbs/hig: use close rather than OK for dismis button
Dialogue buttons should have descriptive names (Bitbake rev: 7b28ed7dfa59d9e7cec662159113a03633f8bb36) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py
index 67cc94e920..849d7c9adf 100644
--- a/bitbake/lib/bb/ui/crumbs/hig.py
+++ b/bitbake/lib/bb/ui/crumbs/hig.py
@@ -838,7 +838,7 @@ class LayerSelectionDialog (CrumbsDialog):
838 layer_store.append([path]) 838 layer_store.append([path])
839 return 839 return
840 dialog = CrumbsMessageDialog(parent, lbl) 840 dialog = CrumbsMessageDialog(parent, lbl)
841 dialog.add_button(gtk.STOCK_OK, gtk.RESPONSE_OK) 841 dialog.add_button(gtk.STOCK_CLOSE, gtk.RESPONSE_OK)
842 response = dialog.run() 842 response = dialog.run()
843 dialog.destroy() 843 dialog.destroy()
844 844