diff --git a/BSIPA-ModList/UI/ViewControllers/DownloadProgressViewController.cs b/BSIPA-ModList/UI/ViewControllers/DownloadProgressViewController.cs index a828bf2c..7de90a7e 100644 --- a/BSIPA-ModList/UI/ViewControllers/DownloadProgressViewController.cs +++ b/BSIPA-ModList/UI/ViewControllers/DownloadProgressViewController.cs @@ -29,7 +29,7 @@ namespace BSIPA_ModList.UI.ViewControllers private Button _pageDownButton; private TableViewScroller _scroller; - private const float TableXOffset = -20f; + private const float TableXOffset = 0f; private const float ButtonXOffset = 36f; private static readonly Vector2 ButtonSize = new Vector2(40f, 10f); @@ -92,7 +92,7 @@ namespace BSIPA_ModList.UI.ViewControllers (_currentlyUpdatingTableView.transform as RectTransform).anchorMin = new Vector2(0.3f, 0.5f); (_currentlyUpdatingTableView.transform as RectTransform).anchorMax = new Vector2(0.7f, 0.5f); (_currentlyUpdatingTableView.transform as RectTransform).sizeDelta = new Vector2(0f, 60f); - (_currentlyUpdatingTableView.transform as RectTransform).anchoredPosition = new Vector3(TableXOffset, -3f); + (_currentlyUpdatingTableView.transform as RectTransform).anchoredPosition = new Vector3(TableXOffset, -20f); ReflectionUtil.SetPrivateField(_currentlyUpdatingTableView, "_pageUpButton", _pageUpButton); ReflectionUtil.SetPrivateField(_currentlyUpdatingTableView, "_pageDownButton", _pageDownButton); @@ -103,6 +103,7 @@ namespace BSIPA_ModList.UI.ViewControllers _currentlyUpdatingTableView.dataSource = this; // calls Init _scroller = gobj.GetComponent(); gobj.SetActive(true); + gobj.GetComponent().content.anchorMax = new Vector2(.6f, 1f); _currentlyUpdatingTableView.RefreshScrollButtons(); diff --git a/BSIPA-ModList/UI/ViewControllers/ModListController.cs b/BSIPA-ModList/UI/ViewControllers/ModListController.cs index fbc999a1..8fd33f1d 100644 --- a/BSIPA-ModList/UI/ViewControllers/ModListController.cs +++ b/BSIPA-ModList/UI/ViewControllers/ModListController.cs @@ -81,7 +81,7 @@ namespace BSIPA_ModList.UI private new void DidActivate(bool first, ActivationType type) { var rt = _customListTableView.transform as RectTransform; - rt.anchorMin = new Vector2(.1f, 0f); + rt.anchorMin = new Vector2(0f, 0f); rt.anchorMax = new Vector2(.9f, 1f); _customListTableView.gameObject.GetComponent().scrollSensitivity = 0f; diff --git a/BSIPA-ModList/manifest.json b/BSIPA-ModList/manifest.json index 212d9d97..5f096e41 100644 --- a/BSIPA-ModList/manifest.json +++ b/BSIPA-ModList/manifest.json @@ -11,7 +11,7 @@ "gameVersion": "1.3.0", "id": "BSIPA Mod List", "name": "BSIPA Mod List", - "version": "1.3.1", + "version": "1.3.2", "icon": "BSIPA_ModList.Icons.self.png", "dependsOn": { "BSIPA": ">=3.13.0 <3.14.0", diff --git a/Refs/BeatSaberCustomUI.dll b/Refs/BeatSaberCustomUI.dll index c088bb8a..2500a5fb 100644 Binary files a/Refs/BeatSaberCustomUI.dll and b/Refs/BeatSaberCustomUI.dll differ diff --git a/Refs/UnityEngine.CoreModule.Net4.dll b/Refs/UnityEngine.CoreModule.Net4.dll index 390d0b06..b6940600 100644 Binary files a/Refs/UnityEngine.CoreModule.Net4.dll and b/Refs/UnityEngine.CoreModule.Net4.dll differ