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

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

Description of the change

This one-liner fixes bug #439621.
The "bottom border" effect is achieved by packing a gtk.HSeparator below the location bar.

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

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-04-13 15:54:16 +0000
3+++ softwarecenter/view/softwarepane.py 2010-04-21 15:42:14 +0000
4@@ -122,6 +122,7 @@
5 self.top_hbox.pack_start(self.navigation_bar, padding=self.PADDING)
6 self.top_hbox.pack_start(self.searchentry, expand=False, padding=self.PADDING)
7 self.pack_start(self.top_hbox, expand=False, padding=self.PADDING)
8+ self.pack_start(gtk.HSeparator(), expand=False)
9 # a notebook below
10 self.notebook = gtk.Notebook()
11 self.notebook.set_show_tabs(False)