nautilus:wip/jimmac/grid-view-shadows-composited

Last commit made on 2022-08-03
Get this branch:
git clone -b wip/jimmac/grid-view-shadows-composited https://git.launchpad.net/nautilus

Branch merges

Branch information

Name:
wip/jimmac/grid-view-shadows-composited
Repository:
lp:nautilus

Recent commits

ffc3989... by jimmac

grid view: icon/thumbnail shadows

Fixes https://gitlab.gnome.org/GNOME/nautilus/-/issues/2255

c217637... by Fran DiƩguez

Update Galician translation

fb28cec... by Hugo Carvalho

Update Portuguese translation

c69a877... by Aleksandr Melman <email address hidden>

Update Russian translation

4b7ddb3... by Daniel Mustieles

Updated Spanish translation

1931fe2... by Corey Berla

properties-window: Initialize all g_auto variables

8c296a9... by Corey Berla

places-view: Disconnect handlers on object destruction

Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/2364

6981ad8... by Corey Berla

list-base: Update files view selection text when item removed

The selection text at the bottom on the view is usually updated
via the signal from the view-model GtkSelectionModel::selection-changed

This works except when items are removed, the signal emits before
the item is fully removed. Rather than listening for all item changes
(i.e. GListModel::items-changed), update the selection text when
items are removed

Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/2338

d6982db... by Corey Berla

rename-file-popover-controller: Set parent only on creation

We are attempting to reset the parent to the view every time
the rename popover shows. This triggers warnings because the
popover already has a parent. There's no reason to do this because
we are setting the parent to the view over and over again.
Since the popover and view have the same lifecycle, set the parent
on creation.

e12bc23... by Corey Berla

view-model: Fix clearing signal handler on sort change

We are attempting to clear the signal after the sorter is already
freed. Clear the signal first.