From 9972be9b19d626f637a796ef0f28c2c06c312f9a Mon Sep 17 00:00:00 2001 From: matt1432 Date: Mon, 2 Oct 2023 13:04:24 -0400 Subject: [PATCH] fix(ags overview): set the correct icon size after cancelling dragndrop --- config/ags/js/overview/dragndrop.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/ags/js/overview/dragndrop.js b/config/ags/js/overview/dragndrop.js index 79cdd82f..50fec767 100644 --- a/config/ags/js/overview/dragndrop.js +++ b/config/ags/js/overview/dragndrop.js @@ -66,6 +66,11 @@ export const WindowButton = ({address, ...params} = {}) => Button({ button.get_parent().destroy(); let mainBox = getWindow('overview').child.children[0].child; mainBox._updateClients(mainBox); + + // Set the correct Icon size + setTimeout(() => { + mainBox._updateClients(mainBox); + }, 100); }); }, });