Merge lp:~kiwinote/software-center/bug888669 into lp:software-center

Proposed by Kiwinote
Status: Merged
Merged at revision: 2617
Proposed branch: lp:~kiwinote/software-center/bug888669
Merge into: lp:software-center
Diff against target: 27 lines (+8/-1)
2 files modified
debian/changelog (+7/-0)
softwarecenter/ui/gtk3/widgets/thumbnail.py (+1/-1)
To merge this branch: bzr merge lp:~kiwinote/software-center/bug888669
Reviewer Review Type Date Requested Status
Gary Lasker (community) Approve
Michael Vogt Pending
Review via email: mp+87252@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Gary Lasker (gary-lasker) wrote :

Thanks as always, Kiwinote! Happy New Year!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2011-12-19 13:12:41 +0000
3+++ debian/changelog 2012-01-02 14:33:21 +0000
4@@ -1,3 +1,10 @@
5+software-center (5.1.5) UNRELEASED; urgency=low
6+
7+ * softwarecenter/ui/gtk3/widgets/thumbnail.py:
8+ - fix IndexError in set_thumbnails_from_data (LP: #888669)
9+
10+ -- Kiwinote <kiwinote@gmail.com> Mon, 02 Jan 2012 14:20:58 +0000
11+
12 software-center (5.1.4) precise; urgency=low
13
14 [ Michael Vogt ]
15
16=== modified file 'softwarecenter/ui/gtk3/widgets/thumbnail.py'
17--- softwarecenter/ui/gtk3/widgets/thumbnail.py 2011-12-08 00:05:26 +0000
18+++ softwarecenter/ui/gtk3/widgets/thumbnail.py 2012-01-02 14:33:21 +0000
19@@ -463,7 +463,7 @@
20 # if there are multiple screenshots
21 n = data.get_n_screenshots()
22
23- if n == 1:
24+ if n <= 1:
25 return
26
27 # get a random selection of thumbnails from those avaialble

Subscribers

People subscribed via source and target branches