Closed ghost closed 11 months ago
I don't get how is it?
I don't get how is it?
try to use any potion or buff skill that has duration time and u will not be able to select any equipped item in inventory it will keep auto close the itemdialog Ui untill the potion duration finish
You can fix it by changes codes in UISelectionEntry.cs
-> OnClickSelect
function
public void OnClickSelect()
{
if (selectionManager != null)
{
UISelectionMode selectionMode = selectionManager.selectionMode;
if (selectionMode == UISelectionMode.Toggle && IsSelected)
selectionManager.Deselect(this);
else if (!IsSelected)
selectionManager.Select(this);
}
}
@insthync This seems to also be occurring with shop item info panels, and equipment compare panels too.
It has been fixed, but not like I posted here.
by add this function in UISelectionEntry.cs
public void SelectByManager()
{
if (selectionManager != null)
selectionManager.Select(this);
}
and use it instead of OnClickSelect()
Whenever i use skill or potion or buff that has duration the equipped item UI stop working untill the skill or potion duration ends that happens only to the equipped items unequipped items ui works normally