~kelemeng/software-center/bug625859

« back to all changes in this revision

Viewing changes to softwarecenter/view/appview.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt, Gary Lasker, Michael Vogt
  • Date: 2010-04-13 22:57:30 UTC
  • Revision ID: james.westby@ubuntu.com-20100413225730-swipvdrstx0jxn5z
Tags: 1.1.26
[ Gary Lasker ]
* softwarecenter/app.py,
  softwarecenter/view/softwarepane.py:
  - correctly refresh the availablepane view on a
    change to software sources (LP: #559539)
* softwarecenter/app.py,
  softwarecenter/view/availablepane.py,
  softwarecenter/view/navhistory.py:
  - clear navigation history on a software channel refresh
    because packages in the history stack might no longer
    be available

[ Michael Vogt ]
* softwarecenter/view/appdetailsview.py:
  - fix displaying removal warning when listview interface buttons
    are used (LP: #561018)

Show diffs side-by-side

added added

removed removed

Lines of Context:
853
853
        # at by default
854
854
        tt = gtk.CellRendererText()
855
855
        column = gtk.TreeViewColumn("Name", tt, text=AppStore.COL_TEXT)
856
 
        column.set_fixed_width(0)
 
856
        column.set_fixed_width(1)
857
857
        column.set_sizing(gtk.TREE_VIEW_COLUMN_FIXED)
858
858
        self.append_column(column)
859
859