MultiCommander v14.2 is released!
Icons are a slow process to fetch, so they are cached because they almost never change.Type ":cic" in the command line field to clear the icon cache.
//Clear Icon CacheMC.CmdLineRun CMD=:cic;//Refresh tabs for active Panel@var $numTabs = TabCount("active");@var $n;for( $n = 0; $n < $numTabs; $n++ ){ MC.Explorer.Refresh; MC.SetActiveTab PANEL=ACTIVE TAB=NEXT;}//Go to inactive panel refresh tabs and come backMC.SetActivePanel PANEL=TOGGLE;$numTabs = TabCount("active");for( $n = 0; $n < $numTabs; $n++ ){ MC.Explorer.Refresh; MC.SetActiveTab PANEL=ACTIVE TAB=NEXT;}MC.SetActivePanel PANEL=TOGGLE;