~gary-lasker/software-center/add-subcat-all-icon

« back to all changes in this revision

Viewing changes to softwarecenter/view/catview_gtk.py

  • Committer: Gary Lasker
  • Date: 2010-07-01 22:33:27 UTC
  • Revision ID: gary.lasker@canonical.com-20100701223327-965ioxgbtloxe6nc
wire in the All icon

Show diffs side-by-side

added added

removed removed

Lines of Context:
279
279
 
280
280
        # append an additional button to show all of the items in the category
281
281
        name = gobject.markup_escape_text(_("All %s") % num_items)
282
 
        show_all_btn = SubcategoryButton(name, icon_name="go-next")
283
 
        all_cat = Category("All", _("All"), "go-next", root_category.query)
 
282
        show_all_btn = SubcategoryButton(name, icon_name="category-show-all")
 
283
        all_cat = Category("All", _("All"), "category-show-all", root_category.query)
284
284
        show_all_btn.connect('clicked', self._on_category_clicked, all_cat)
285
285
        self.departments.append(show_all_btn)
286
286