
this is the "lite" version, both this and "right" leave it on the screen.
V1.3.3
anytime you do a trade and close the trade window the GUI stays on your screen until you open a box or tc or whatever and close that then it goes away.

FastBurst
Is this issue every going to get fixed???
probably not, it has been an on-going issue for a very long time now
@Frenk92 Can we get support for Trade plugin please. When any one does a trade the Quick Sort stays open after trade is closed. Its pretty annouying - @Wulf had said in the Trade Support forums that this would be a Quick Sort issue.
Currently the only way to make the Quicksort in the upper right disappear is to open anothe box or furnance or whatever then close it in order for this to kill the Quick Sort GUI.
private void OnLootEntity(BasePlayer player, BaseEntity entity)
{
var check = entity.GetComponent<DestroyOnGroundMissing>();
if (check != null && check.enabled == false)
{
return;
}
if (permission.UserHasPermission(player.UserIDString, permUse) && !(entity is VendingMachine) && !(entity is ShopFront) && !(entity is BigWheelBettingTerminal))
{
UserInterface(player);
}
}