GNOME Bugzilla – Bug 736463
put scrollbar to the right
Last modified: 2016-02-02 13:41:01 UTC
Created attachment 285898 [details] awkward scrollbar in the middle I like the improved fixed width layout of the search result page, yet having the scrollbar adjacent to the content box feels really awkward. The scrollbar should remain on the window edge, with the content kept in the middle.
Created attachment 320188 [details] [review] Scrollbar-position-fix
Review of attachment 320188 [details] [review]: Thanks for your patch. --- a/gnomemusic/view.py +++ b/gnomemusic/view.py @@ -1341,8 +1341,8 @@ class Search(ViewContainer): @log def __init__(self, window, player): ViewContainer.__init__(self, 'search', None, window, Gd.MainViewType.LIST) - self.view.set_halign(Gtk.Align.CENTER) - self.view.set_size_request(530, -1) + #self.view.set_halign(Gtk.Align.CENTER) + #self.view.set_size_request(530, -1) Could you please remove this commented lines? We don't want dead code within the source.
Created attachment 320252 [details] [review] Unnecessary dead code removed.
Ignore the last patch (incomplete).
Created attachment 320264 [details] [review] Repositioned scroll bar in search view This fix removes the dead code present in the last reviewed patch.
Review of attachment 320264 [details] [review]: Sure.