Mnemonic removed in branch popup actions

This commit is contained in:
Nadya Zabrodina
2013-07-02 20:46:06 +04:00
parent 44d8fa306d
commit ef47fa7f55
2 changed files with 2 additions and 2 deletions
@@ -33,7 +33,7 @@ public abstract class NewBranchAction<T extends Repository> extends DumbAwareAct
protected Project myProject;
public NewBranchAction(@NotNull Project project, @NotNull List<T> repositories) {
super("New &Branch", "Create and checkout new branch", IconUtil.getAddIcon());
super("New Branch", "Create and checkout new branch", IconUtil.getAddIcon());
myRepositories = repositories;
myProject = project;
}
@@ -132,7 +132,7 @@ public class HgBranchPopupActions {
@NotNull final VirtualFile myPreselectedRepo;
HgNewBookmarkAction(@NotNull Project project, @NotNull List<HgRepository> repositories, @NotNull VirtualFile preselectedRepo) {
super("New Book&mark", "Create new bookmark", null);
super("New Bookmark", "Create new bookmark", null);
myProject = project;
myRepositories = repositories;
myPreselectedRepo = preselectedRepo;