Fix fg and bg styling

- In ListView and MenuView fix how styling for
  background and foreground are used.
- In Catalog app fix same issue in ScenarioListCell
- Fixes #1063
This commit is contained in:
Janne Valkealahti
2024-05-07 08:05:45 +01:00
parent 419f6a8aa4
commit 2b18de0ffb
5 changed files with 155 additions and 11 deletions

View File

@@ -235,7 +235,7 @@ public class Catalog {
@Override
protected void drawContent(Screen screen) {
Rectangle rect = getRect();
Writer writer = screen.writerBuilder().style(getStyle()).build();
Writer writer = screen.writerBuilder().style(getStyle()).color(getForegroundColor()).build();
writer.text(String.format("%-20s %s", getItem().name(), getItem().description()), rect.x(), rect.y());
}
}