Updated HSS/VSS to ensure events fire correctly if the control is dragged but not moved:

Resolves: #186
pull/442/head
SimonDarksideJ 2023-06-17 17:16:31 +01:00
parent ab34212ade
commit e7babe0dd6
2 changed files with 8 additions and 0 deletions

View File

@ -328,6 +328,10 @@ namespace UnityEngine.UI.Extensions
}
}
}
else if (distance == 0)
{
EndScreenChange();
}
}
}
}

View File

@ -321,6 +321,10 @@ namespace UnityEngine.UI.Extensions
}
}
}
else if (distance == 0)
{
EndScreenChange();
}
}
}
}