mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-05 21:02:24 +08:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
e270f205a1 |
@ -19,7 +19,7 @@ namespace UnityExplorer
|
|||||||
public static class ExplorerCore
|
public static class ExplorerCore
|
||||||
{
|
{
|
||||||
public const string NAME = "UnityExplorer";
|
public const string NAME = "UnityExplorer";
|
||||||
public const string VERSION = "4.0.2";
|
public const string VERSION = "4.0.3";
|
||||||
public const string AUTHOR = "Sinai";
|
public const string AUTHOR = "Sinai";
|
||||||
public const string GUID = "com.sinai.unityexplorer";
|
public const string GUID = "com.sinai.unityexplorer";
|
||||||
|
|
||||||
|
@ -298,7 +298,7 @@ namespace UnityExplorer.UI.Widgets
|
|||||||
if (CellPool.Count > 1)
|
if (CellPool.Count > 1)
|
||||||
{
|
{
|
||||||
int index = CellPool.Count - 1 - (topPoolIndex % (CellPool.Count - 1));
|
int index = CellPool.Count - 1 - (topPoolIndex % (CellPool.Count - 1));
|
||||||
cell.Rect.SetSiblingIndex(index);
|
cell.Rect.SetSiblingIndex(index + 1);
|
||||||
|
|
||||||
if (bottomPoolIndex == index - 1)
|
if (bottomPoolIndex == index - 1)
|
||||||
bottomPoolIndex++;
|
bottomPoolIndex++;
|
||||||
|
Reference in New Issue
Block a user