Fixed color rendering for good

This commit was merged in pull request #26.
This commit is contained in:
2026-08-22 00:29:10 +02:00
parent 8fd3de2ab7
commit cf6c068394
12 changed files with 213 additions and 234 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ impl Navigable for SettingsMenu {
core::future::ready(())
}
fn handle_input(&self, input: Action) -> impl core::future::Future<Output = View> + Send {
fn handle_input(&self, _input: Action) -> impl core::future::Future<Output = View> + Send {
async move { View::Settings(SettingsMenu { selected: 0 }) }
}
}