Made release buildable

This commit is contained in:
Simon Lübeß
2025-08-24 16:54:26 +02:00
parent 7df651103b
commit c94ffbef64
15 changed files with 396 additions and 147 deletions
@@ -1376,7 +1376,7 @@ namespace GlitchyEditor.EditWindows
private void CopySelectedFiles(bool cutFiles)
{
_filesToCopy.ClearAndDeleteItems();
_selectedFiles.Select((file) => new String(file)).ToList(_filesToCopy);
_selectedFiles.Select(scope (file) => new String(file)).ToList(_filesToCopy);
_cutFiles = cutFiles;
}