Skip to content

Commit

Permalink
Update default deck editor selection
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Feb 9, 2018
1 parent d65414d commit 0f53883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/DeckEditor/CardSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void MoveLeft()
EventSystem.current.SetSelectedGameObject(results.layoutArea.GetChild(i).gameObject);
return;
}
EventSystem.current.SetSelectedGameObject(results.layoutArea.GetChild(results.layoutArea.childCount - 1).gameObject);
EventSystem.current.SetSelectedGameObject(results.layoutArea.GetChild(0).gameObject);
}

public void MoveRight()
Expand Down

0 comments on commit 0f53883

Please sign in to comment.