You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add Yes/No to all for batch asset import (stride3d#3052)
* Initial commit moving from old branch - pending local testing
* Update logic to not display "to all" buttons on the last file in the collection
Also some minor grammar/formatting
* Remove File.Count check - unnecessary
* Revert out message change so translations don't break
* Modify overwrite prompt so we only abort when cancel/close is pressed, No will move to the next file
Copy file name to clipboardExpand all lines: sources/editor/Stride.Core.Assets.Editor/ViewModel/AssetCollectionViewModel.cs
+84-24Lines changed: 84 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,10 @@
1
1
// Copyright (c) .NET Foundation and Contributors (https://dotnetfoundation.org/ & https://stride3d.net) and Silicon Studio Corp. (https://www.siliconstudio.co.jp)
2
2
// Distributed under the MIT license. See the LICENSE.md file in the project root for more information.
message=Tr._p("Message","The file '{0}' already exists, it will get overwritten if you continue, do you really want to proceed?").ToFormat(finalPath);
666
+
if(!overwriteAll)
667
+
{
668
+
varmessage=Tr._p("Message","The file '{0}' already exists, it will get overwritten if you continue, do you really want to proceed?").ToFormat(finalPath);
0 commit comments