Fix directory rename not updating paths in advanced window.

This commit is contained in:
Ottermandias 2023-10-22 15:37:52 +02:00
parent 25e9a99799
commit 2cb92d817a

View file

@ -598,7 +598,7 @@ public partial class ModEditWindow : Window, IDisposable
private void OnModPathChanged(ModPathChangeType type, Mod mod, DirectoryInfo? _1, DirectoryInfo? _2)
{
if (type is ModPathChangeType.Reloaded)
if (type is ModPathChangeType.Reloaded or ModPathChangeType.Moved)
ChangeMod(mod);
}
}