invert_title

This commit is contained in:
e2002
2023-02-28 16:41:04 +03:00
parent 9d39655531
commit 357ac2ec3a
15 changed files with 32 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
#ifndef _TFTINVERTTITLE_H_
#define _TFTINVERTTITLE_H_
#if !defined(DSP_LCD) && DSP_MODEL!=DSP_NOKIA5110
#if !DSP_INVERT_TITLE
uint16_t newbg = config.theme.meta;
config.theme.meta = config.theme.metabg;
config.theme.metabg = newbg;
config.theme.metafill = config.theme.div;
#endif
#endif
#endif