Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit aa0e00d

Browse files
Missing start for CreateBranch tasks
1 parent 6cbf7c5 commit aa0e00d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/BranchesView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ private void OnTreeNodeGUI(BranchTreeNode node)
614614
String.Format(Localization.SwitchBranchFailedDescription, node.Name),
615615
Localization.Cancel);
616616
}
617-
});
617+
}).Start();
618618
}
619619
else if (node.Type == NodeType.RemoteBranch)
620620
{
@@ -629,7 +629,7 @@ private void OnTreeNodeGUI(BranchTreeNode node)
629629
String.Format(Localization.SwitchBranchFailedDescription, node.Name),
630630
Localization.Cancel);
631631
}
632-
});
632+
}).Start();
633633
}
634634
}
635635
}

0 commit comments

Comments
 (0)