Update a few plugins, finalize artwork license table

This commit is contained in:
falkTX 2022-01-18 22:53:34 +00:00
parent c06768f70f
commit 0ee528bc93
11 changed files with 41 additions and 29 deletions

View file

@ -7,26 +7,28 @@
#include "../ImpromptuModular/src/comp/PanelTheme.hpp"
NVGcolor SCHEME_RED_IM = SCHEME_RED;
NVGcolor SCHEME_GREEN_IM = SCHEME_GREEN;
void writeThemeAndContrastAsDefault() {}
void readThemeAndContrastFromDefault() {}
void saveThemeAndContrastAsDefault(int, float) {}
void loadThemeAndContrastFromDefault(int* panelTheme, float* panelContrast) {
*panelTheme = 1;
*panelContrast = panelContrastDefault;
}
bool isDark(int*) {
return true;
}
void readThemeAndContrastFromDefault() {}
void createPanelThemeMenu(ui::Menu*, int*, float*, SvgPanel*) {}
void PanelBaseWidget::draw(const DrawArgs& args) {
nvgBeginPath(args.vg);
NVGcolor baseColor;