|
@@ -4,7 +4,6 @@
|
|
|
// responsibility is to draw the UI based on the state provided by the
|
|
|
// ArbitratorController.
|
|
|
|
|
|
-using System;
|
|
|
using System.Linq;
|
|
|
using UnityEngine;
|
|
|
using UnityEditor;
|
|
@@ -27,7 +26,7 @@ namespace Terra.Arbitrator.GUI
|
|
|
[MenuItem("Version Control/Better Git")]
|
|
|
public static void ShowWindow()
|
|
|
{
|
|
|
- var type = Type.GetType(DockNextTo);
|
|
|
+ var type = System.Type.GetType(DockNextTo);
|
|
|
var window = GetWindow<ArbitratorWindow>(type);
|
|
|
window.titleContent = new GUIContent("Better Git", EditorGUIUtility.IconContent("d_UnityEditor.VersionControl").image);
|
|
|
}
|