Skip to content

Commit

Permalink
Correct playlist position.
Browse files Browse the repository at this point in the history
  • Loading branch information
halsafar committed Sep 22, 2018
1 parent c281e4b commit 290f904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SongBrowserPlugin/UI/Playlists/PlaylistTableView.cs
Expand Up @@ -76,7 +76,7 @@ public void Init(RectTransform parent, PlaylistsReader reader)
(_tableView.transform as RectTransform).anchorMax = new Vector2(1f, 0.5f);
(_tableView.transform as RectTransform).sizeDelta = new Vector2(0f, 60f);
(_tableView.transform as RectTransform).position = new Vector3(0f, 0f, 2.4f);
(_tableView.transform as RectTransform).anchoredPosition = new Vector3(0f, 3f);
(_tableView.transform as RectTransform).anchoredPosition = new Vector3(0f, -3f);

_tableView.didSelectRowEvent += HandleDidSelectRowEvent;

Expand Down

0 comments on commit 290f904

Please sign in to comment.