Removed Ctrl+0 to open version control in Unity 5.1

:frowning:
and i really want to bring it back!!
i even wrote this in script:

[MenuItem(“Window/Asset Server %0”)]
static void BringBackCtrlZero()
{

}

So , the question is: what i need to write inside so Asset Server (version control of unity) will open with Ctrl+0 shortcut?
thanks all!

What about this:

[MenuItem("Window/Asset Server %0")]
static void BringBackCtrlZero()
{
    EditorApplication.ExecuteMenuItem("Window/Version Control");
}
1 Like

toda raba haver! :slight_smile:

1 Like