appDisplay: Make the app grid horizontal

Horizontal pagination is more natural than vertical, but for
historical reasons we ended up with a vertically paginated
app grid.

Make the app grid horizontal.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1554>
This commit is contained in:
Georges Basile Stavracas Neto
2020-05-27 23:29:16 -03:00
committed by Marge Bot
parent b3d57dc4bd
commit be279abe9e
2 changed files with 19 additions and 6 deletions

View File

@ -1334,7 +1334,7 @@ var IconGrid = GObject.registerClass({
_init(layoutParams = {}) {
layoutParams = Params.parse(layoutParams, {
allow_incomplete_pages: false,
orientation: Clutter.Orientation.VERTICAL,
orientation: Clutter.Orientation.HORIZONTAL,
columns_per_page: 6,
rows_per_page: 4,
page_halign: Clutter.ActorAlign.FILL,