fix(ags overview): set the correct icon size after cancelling dragndrop

This commit is contained in:
matt1432 2023-10-02 13:04:24 -04:00
parent 36e2709823
commit 9972be9b19

View file

@ -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);
});
},
});