Yellow coloration for truncated freqman files (#1086)

This commit is contained in:
gullradriel 2023-05-28 17:09:46 +02:00 committed by GitHub
parent 0dcf2af50d
commit 23c24355ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 3 deletions

View file

@ -61,12 +61,16 @@ class FreqManUIList : public Widget {
void set_db(freqman_db& db);
private:
static constexpr Style style_default{
Style style_default{
.font = font::fixed_8x16,
.background = Color::black(),
.foreground = Color::white(),
};
Style style_yellow{
.font = font::fixed_8x16,
.background = Color::black(),
.foreground = Color::yellow(),
};
static constexpr int8_t char_height = 16;
bool instant_exec_{false};
freqman_db freqlist_db{};