Quellcode durchsuchen

Increase textbox limit to 999

Bepis vor 6 Jahren
Ursprung
Commit
98363bbddb
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      Plugins/InputUnlocker/InputUnlocker.cs

+ 1 - 1
Plugins/InputUnlocker/InputUnlocker.cs

@@ -15,7 +15,7 @@ namespace InputUnlocker
         {
             foreach (UnityEngine.UI.InputField gameObject in GameObject.FindObjectsOfType<UnityEngine.UI.InputField>())
             {
-                gameObject.characterLimit = 99;
+                gameObject.characterLimit = 999;
             }
         }