Browse Source

Sujith :) ->
1. Changed the title

sujith 1 month ago
parent
commit
4150571693
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Assets/Arbitrator/Editor/GUI/ConflictResolutionWindow.cs

+ 1 - 1
Assets/Arbitrator/Editor/GUI/ConflictResolutionWindow.cs

@@ -27,7 +27,7 @@ namespace Terra.Arbitrator.GUI
         /// <param name="onCloseCallback">A callback that provides the list of files the user selected to reset. If the user cancels, the list will be null.</param>
         public static void ShowWindow(List<string> conflictingFiles, Action<List<string>> onCloseCallback)
         {
-            var window = GetWindow<ConflictResolutionWindow>(true, "Pull Conflicts Detected", true);
+            var window = GetWindow<ConflictResolutionWindow>(true, "Conflicts Detected", true);
             window.minSize = new Vector2(600, 400);
             window._conflictingFiles = conflictingFiles;
             window._filesToReset = new List<bool>(new bool[conflictingFiles.Count]); // Initialize all to false