Merge lp:~mmcg069/software-center/small-ui-fix into lp:software-center

Proposed by Matthew Paul Thomas
Status: Merged
Merged at revision: 1199
Proposed branch: lp:~mmcg069/software-center/small-ui-fix
Merge into: lp:software-center
Diff against target: 17 lines (+3/-3)
1 file modified
softwarecenter/view/softwarepane.py (+3/-3)
To merge this branch: bzr merge lp:~mmcg069/software-center/small-ui-fix
Reviewer Review Type Date Requested Status
software-store-developers Pending
Review via email: mp+35517@code.launchpad.net

Description of the change

<mpt> Are you ok proposing small-ui-fix for merging?
<mpt> http://launchpad.net/bugs/638852
<nzmm> sure
<nzmm> its harmless

Fixes bug 638852.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'softwarecenter/view/softwarepane.py'
2--- softwarecenter/view/softwarepane.py 2010-09-15 02:46:11 +0000
3+++ softwarecenter/view/softwarepane.py 2010-09-15 11:18:51 +0000
4@@ -235,10 +235,10 @@
5 a = widget.allocation
6 self.style.paint_shadow(widget.window, self.state,
7 gtk.SHADOW_IN,
8- (a.x, a.y+a.height+self.PADDING-1, a.width, 1),
9+ (a.x, a.y+a.height-1, a.width, 1),
10 widget, "viewport",
11- a.x, a.y+a.height+self.PADDING-1,
12- a.width, a.y+a.height+self.PADDING-1)
13+ a.x, a.y+a.height-1,
14+ a.width, a.y+a.height-1)
15 return
16
17 def on_cache_ready(self, cache):