Minder icon indicating copy to clipboard operation
Minder copied to clipboard

Property sidebar gear icon missing on Arch Linux

Open renaldofreire opened this issue 3 years ago • 2 comments

OS: Arch Linux x86_64

Minder version 1.12.4 has an error in the "Show property sidebar" icon.

Is this a local problem?

image

renaldofreire avatar Aug 09 '21 05:08 renaldofreire

Same in Fedora 34

MarSik avatar Oct 28 '21 09:10 MarSik

Minder uses the pane-show-symbolic and pane-hide-symbolic system icons for non-elementary OS installs. I'm guessing that your distributions are missing these icons.

phase1geo avatar Oct 28 '21 12:10 phase1geo

I reported this bug on the Arch Linux bug tracker: https://bugs.archlinux.org/task/75920

louwers avatar Sep 16 '22 12:09 louwers

Quick fix:

$ git clone https://github.com/elementary/icons
# cp icons/actions/symbolic/pane-show-symbolic.svg /usr/share/icons/Adwaita/scalable/actions/pane-show-symbolic.svg
# cp icons/actions/symbolic/pane-hide-symbolic.svg /usr/share/icons/Adwaita/scalable/actions/pane-hide-symbolic.svg 
# gtk-update-icon-cache /usr/share/icons/Adwaita

Another option, install elementary-icon-theme and edit /usr/share/icons/Adwaita/index.theme to inherit from elementary:

Inherits=hicolor, elementary

louwers avatar Sep 16 '22 12:09 louwers

There is an elementary-icon-theme packge. It installs the icons to:

/usr/share/icons/elementary/actions/symbolic/pane-show-symbolic.svg
/usr/share/icons/elementary/actions/symbolic/pane-hide-symbolic.svg

How can we make sure that Minder picks these up?

Edit: I tried this:

    default_theme.add_resource_path( "/usr/share/icons/elementary/actions/symbolic/pane-show-symbolic.svg" );

and this

    default_theme.add_resource_path( "/usr/share/icons/elementary/actions/symbolic" );

but it does not seem to be effective.

louwers avatar Sep 16 '22 12:09 louwers

I can see that the icon has been replaced in master.

So I guess this can be closed.

louwers avatar Sep 16 '22 15:09 louwers