kopia lustrzana https://github.com/jameshball/osci-render
10 wiersze
251 B
C
10 wiersze
251 B
C
![]() |
#pragma once
|
||
|
#include <JuceHeader.h>
|
||
|
|
||
|
namespace Util {
|
||
|
void changeSvgColour(juce::XmlElement* xml, juce::String colour) {
|
||
|
forEachXmlChildElement(*xml, xmlnode) {
|
||
|
xmlnode->setAttribute("fill", colour);
|
||
|
}
|
||
|
}
|
||
|
}
|