Work on scroll list style.

This commit is contained in:
2026-05-03 23:13:25 +02:00
parent cf7b9ace08
commit d4c7e59cd6
4 changed files with 403 additions and 24 deletions
+4 -1
View File
@@ -257,7 +257,10 @@ pub fn main() -> ExitCode {
match iced_result {
Ok(()) => ExitCode::SUCCESS,
Err(_) => ExitCode::from(42), // Custom error code
Err(ex) => {
println!("ICED Error: {}", ex);
ExitCode::from(42)
}, // Custom error code
}
}