Differences From Artifact [48ba76eec4]:
- File src/skins.c — part of check-in [0853ab7447] at 2020-11-10 13:40:56 on branch trunk — If the "pikchr-foreground" property is set in the "details.txt" file of a skin, then the value of that property becomes the default foreground color for Pikchr diagrams. (user: drh size: 35664) [more...]
To Artifact [0fbf7b8336]:
- File src/skins.c — part of check-in [08fe2bdc0d] at 2020-11-22 12:35:35 on branch trunk — Add support for the pikchr-scale and pikchr-fontscale variables in the details.txt of skins. Use these values to adjust the sizes of Pikchr images to better match alternative font sizes in the skin. (user: drh size: 35754) [more...]
| ︙ | |||
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | + + |
**
** The following array holds the value for all known skin details.
*/
static struct SkinDetail {
const char *zName; /* Name of the detail */
const char *zValue; /* Value of the detail */
} aSkinDetail[] = {
{ "pikchr-fontscale", "" },
{ "pikchr-foreground", "" },
{ "pikchr-scale", "" },
{ "timeline-arrowheads", "1" },
{ "timeline-circle-nodes", "0" },
{ "timeline-color-graph-lines", "0" },
{ "white-foreground", "0" },
};
/*
|
| ︙ |