fix(status-area): use panel icon button logic for consistency

This commit is contained in:
Michael Aaron Murphy 2026-01-13 17:59:57 +01:00 committed by Ashley Wulber
parent f06c6a0b80
commit 290439b9b9
2 changed files with 36 additions and 3 deletions

View file

@ -72,7 +72,7 @@ impl State {
.map(|mut i| {
if i.width <= 0 || i.height <= 0 || i.bytes.is_empty() {
// App sent invalid icon data during initialization - show placeholder until NewIcon signal
eprintln!("Skipping invalid icon: {}x{} with {} bytes, app may still be initializing",
tracing::debug!("Skipping invalid icon: {}x{} with {} bytes, app may still be initializing",
i.width, i.height, i.bytes.len());
return icon::from_name("dialog-question").symbolic(true).handle();
}