Merge lp:~osomon/software-center/progress_bar_no_text into lp:software-center

Proposed by Olivier Tilloy
Status: Merged
Merged at revision: not available
Proposed branch: lp:~osomon/software-center/progress_bar_no_text
Merge into: lp:software-center
Diff against target: 11 lines (+1/-0)
1 file modified
softwarecenter/view/pendingview.py (+1/-0)
To merge this branch: bzr merge lp:~osomon/software-center/progress_bar_no_text
Reviewer Review Type Date Requested Status
Michael Vogt Approve
Review via email: mp+23758@code.launchpad.net

Description of the change

This branch fixes bug #564785.

Quoting the specification (https://wiki.ubuntu.com/SoftwareCenter#in-progress):

"each row has a progress bar (which itself never contains any text)"

This trivial patch removes the text from the progress bar (displayed by default).

To post a comment you must log in.
Revision history for this message
Michael Vogt (mvo) wrote :

Merging into trunk, can't merge into lucid because its a (small) UI change.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'softwarecenter/view/pendingview.py'
2--- softwarecenter/view/pendingview.py 2010-02-02 01:04:28 +0000
3+++ softwarecenter/view/pendingview.py 2010-04-20 12:03:18 +0000
4@@ -179,6 +179,7 @@
5 tp = gtk.CellRendererProgress()
6 tp.set_property("xpad", self.CANCEL_XPAD)
7 tp.set_property("ypad", self.CANCEL_YPAD)
8+ tp.set_property("text", "")
9 column = gtk.TreeViewColumn("Progress", tp,
10 value=PendingStore.COL_PROGRESS)
11 column.set_min_width(200)