EssentialGG / Elementa

A simple, declarative GUI library for Minecraft
GNU Lesser General Public License v3.0
351 stars 30 forks source link

Inspector: Replace click.svg with png #153

Closed Johni0702 closed 2 days ago

Johni0702 commented 1 week ago

Elementa's SVG renderer only works on legacy OpenGL, so this button is invisible on modern versions.

This commit fixes that by baking the svg to png and using that instead.

Converted using ImageMagick (convert -density 1200 -resize 48x48 -background none ../../svg/click.svg click.png) after changing the stroke color to white.

Johni0702 commented 1 week ago

Should the svg be removed if it is no longer used? Or is it being retained for reference purposes?

I kept it in case some third-party mod uses it.