test
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using UnityEditor;
|
||||
using Unity.PlasticSCM.Editor.UI;
|
||||
|
||||
namespace Unity.PlasticSCM.Editor
|
||||
{
|
||||
internal static class PlasticMenuItem
|
||||
{
|
||||
[MenuItem(MENU_ITEM_NAME, false)]
|
||||
static void ShowPanel()
|
||||
{
|
||||
PlasticPlugin.OpenPlasticWindowDisablingOfflineModeIfNeeded();
|
||||
}
|
||||
|
||||
[MenuItem(MENU_ITEM_NAME, true)]
|
||||
static bool ValidateMenu()
|
||||
{
|
||||
return !CollabPlugin.IsEnabled();
|
||||
}
|
||||
|
||||
const string MENU_ITEM_NAME = "Window/" + UnityConstants.PLASTIC_WINDOW_TITLE;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user