From 1d879628f30195ca98017c1a676de9b7dc3fd78f Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 20 Sep 2024 09:45:01 -0600 Subject: [PATCH] Fix missing thumbnails in condensed list view --- src/tab.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tab.rs b/src/tab.rs index 7f340ad..938069d 100644 --- a/src/tab.rs +++ b/src/tab.rs @@ -2107,7 +2107,8 @@ impl Tab { rgba.as_raw().clone(), ); item.icon_handle_grid = handle.clone(); - item.icon_handle_list = handle; + item.icon_handle_list = handle.clone(); + item.icon_handle_list_condensed = handle; } item.thumbnail_opt = Some(thumbnail); break;