mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-26 14:30:26 +00:00
Keep limit under 4k to prevent memory issues
This commit is contained in:
parent
cae1d75173
commit
51be965bc2
5 changed files with 1 additions and 1 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -24,7 +24,7 @@ namespace Switch_Toolbox.Library.Forms
|
||||||
public void BeginUpdate() { treeViewCustom1.BeginUpdate(); }
|
public void BeginUpdate() { treeViewCustom1.BeginUpdate(); }
|
||||||
public void EndUpdate() { treeViewCustom1.EndUpdate(); }
|
public void EndUpdate() { treeViewCustom1.EndUpdate(); }
|
||||||
|
|
||||||
public readonly int MAX_TREENODE_VALUE = 1;
|
public readonly int MAX_TREENODE_VALUE = 4000;
|
||||||
|
|
||||||
public void AddIArchiveFile(IFileFormat FileFormat)
|
public void AddIArchiveFile(IFileFormat FileFormat)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue