From 32efedc7e1c64c20528fc75e07af13c61b4c8a59 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Tue, 7 Nov 2023 18:35:35 +0100 Subject: [PATCH] utils/iced: Don't log noisy theme --- src/utils/iced.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/iced.rs b/src/utils/iced.rs index a3a0cf13..ae59aeb1 100644 --- a/src/utils/iced.rs +++ b/src/utils/iced.rs @@ -206,7 +206,7 @@ impl fmt::Debug for IcedElementInternal

{ .field("size", &self.size) .field("pending_update", &self.pending_update) .field("cursor_pos", &self.cursor_pos) - .field("theme", &self.theme) + .field("theme", &"...") .field("renderer", &"...") .field("state", &"...") .field("debug", &self.debug)