Gcc warning onscreen (#1701)

* Fix GCC version detection for old CMAKE

* Yellow tint version number / hash on gcc mismatch
This commit is contained in:
E.T 2023-12-31 22:46:26 +01:00 committed by GitHub
parent 935c43e88f
commit 1b3a99cc5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 2 deletions

View file

@ -441,7 +441,17 @@ InformationView::InformationView(
&version,
&ltime});
#if GCC_VERSION_MISMATCH
static constexpr Style style_gcc_warning{
.font = font::fixed_8x16,
.background = {33, 33, 33},
.foreground = Color::yellow(),
};
version.set_style(&style_gcc_warning);
#else
version.set_style(&style_infobar);
#endif
ltime.set_style(&style_infobar);
refresh();
set_dirty();