Rack-lib assets is missing Trimpot-bg.png

Hi @danngreen - hope you aren’t tired of my tagging, appreciate your time in advance as always.

I believe there is a missing Trimpot_bg.svg here - which is required by the Trimpot component in componentlibrary.hpp

struct Trimpot : app::SvgKnob {
	widget::SvgWidget* bg;

	Trimpot() {
		minAngle = -0.75 * M_PI;
		maxAngle = 0.75 * M_PI;

		bg = new widget::SvgWidget;
		fb->addChildBelow(bg, tw);

		setSvg(Svg::load(asset::system("res/ComponentLibrary/Trimpot.svg")));
		bg->setSvg(Svg::load(asset::system("res/ComponentLibrary/Trimpot_bg.svg")));
	}
};

Not sure how critical this is as it just complains on Simulator.

I don’t think that’s an issue, are you seeing a warning or error?

The thing is that for several knob types, Rack uses multiple images (to give them a “depth” kind of look), but a “flat” style shows up better on the MM screen, so we just use a single image. If you look elsewhere in componentlibrary.hpp, you’ll see most/all knobs derived from app::SvgKnob also load a file ending in _bg.svg, which also is not present in the assets/rack-lib dir.

Just a warning in the console, saying it was missing. I thought this was the cause of seg fault but it wasn’t related, so I don’t think this issue is a big deal.