Some more unstrip fixes, and a few cleanups

This commit is contained in:
sinaioutlander
2020-09-30 01:52:49 +10:00
parent dab7ecd441
commit 23723a4ffd
25 changed files with 924 additions and 673 deletions

View File

@ -94,7 +94,7 @@ namespace Explorer
{
GUILayout.Label("Limit: ", new GUILayoutOption[] { GUILayout.Width(50) });
var limit = this.ItemsPerPage.ToString();
limit = GUILayout.TextField(limit, new GUILayoutOption[] { GUILayout.Width(50) });
limit = GUIUnstrip.TextField(limit, new GUILayoutOption[] { GUILayout.Width(50) });
if (limit != ItemsPerPage.ToString() && int.TryParse(limit, out int i))
{
ItemsPerPage = i;