ui/crumbs/hobpage: no need to force a Toolbar button type

This uses a more concise API that will be more flexible whent he Toolbar
style is updated to match the visual design.

(Bitbake rev: 6491b5fd877d6006ebc91e0c73d443a6e7626f3f)

Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Joshua Lock 2012-03-13 13:11:16 -07:00 committed by Richard Purdie
parent 740bd44c5a
commit 854f3a521a
1 changed files with 1 additions and 3 deletions

View File

@ -81,7 +81,5 @@ class HobPage (gtk.VBox):
pix_buffer = gtk.gdk.pixbuf_new_from_file(icon_display)
icon.set_from_pixbuf(pix_buffer)
tip_text = tip
button = toolbar.append_element(gtk.TOOLBAR_CHILD_RADIOBUTTON, None,
buttonname, tip_text, "Private text", icon,
cb, None)
button = toolbar.append_item(buttonname, tip, None, icon, cb)
return button