mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-27 08:07:11 +02:00
Ava UI: Mod Manager Fixes (Again) (#6187)
* Fix typo + Fix deleting from old dir * Avoid double enumeration * Break when parentDir is found * Fix deleting non subdirectory mods * Typo
This commit is contained in:
parent
a8fbcdae9f
commit
bb4a28b525
2 changed files with 39 additions and 23 deletions
|
@ -17,14 +17,16 @@ namespace Ryujinx.Ava.UI.Models
|
|||
}
|
||||
}
|
||||
|
||||
public bool InSd { get; }
|
||||
public string Path { get; }
|
||||
public string Name { get; }
|
||||
|
||||
public ModModel(string path, string name, bool enabled)
|
||||
public ModModel(string path, string name, bool enabled, bool inSd)
|
||||
{
|
||||
Path = path;
|
||||
Name = name;
|
||||
Enabled = enabled;
|
||||
InSd = inSd;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue