From f48c0b99e0c3740eb0f728fe8894f65e97d2c7e8 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Thu, 18 Apr 2019 20:37:51 -0500 Subject: [PATCH] Reduced description text size --- BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs b/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs index 8c563249..35e23ddb 100644 --- a/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs +++ b/BSIPA-ModList/UI/ViewControllers/ModInfoViewController.cs @@ -74,6 +74,7 @@ namespace BSIPA_ModList.UI authorText = BeatSaberUI.CreateText(rectTransform, controller.Author, new Vector2(11f, 22f)); authorText.fontSize = 4.5f; descText = BeatSaberUI.CreateText(rectTransform, controller.Description, new Vector2(-4.5f, 12f)); + descText.fontSize = 3.5f; descText.enableWordWrapping = true; descText.overflowMode = TextOverflowModes.ScrollRect;