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

Commit

Permalink
Merge pull request #72 from github-for-unity/fixes/dialog-ok
Browse files Browse the repository at this point in the history
Changing Cancel buttons to Ok
  • Loading branch information
shana authored Jul 3, 2017
2 parents 96a63c7 + 7d1f1c5 commit 9eff271
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ private void OnTreeNodeGUI(BranchTreeNode node)
{
EditorUtility.DisplayDialog(Localization.SwitchBranchTitle,
String.Format(Localization.SwitchBranchFailedDescription, node.Name),
Localization.Cancel);
Localization.Ok);
}
}).Start();
}
Expand All @@ -627,7 +627,7 @@ private void OnTreeNodeGUI(BranchTreeNode node)
{
EditorUtility.DisplayDialog(Localization.SwitchBranchTitle,
String.Format(Localization.SwitchBranchFailedDescription, node.Name),
Localization.Cancel);
Localization.Ok);
}
}).Start();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ private void Pull()
{
EditorUtility.DisplayDialog(Localization.PullActionTitle,
Localization.PullFailureDescription,
Localization.Cancel);
Localization.Ok);
}
})
.Start();
Expand All @@ -702,7 +702,7 @@ private void Push()
{
EditorUtility.DisplayDialog(Localization.PushActionTitle,
Localization.PushFailureDescription,
Localization.Cancel);
Localization.Ok);
}
})
.Start();
Expand Down

0 comments on commit 9eff271

Please sign in to comment.