Skip to content

Commit 1cd02d7

Browse files
committed
Rename is better as a first item in refactor menu...
1 parent 2905d20 commit 1cd02d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

External/Plugins/CodeRefactor/Controls/RefactorMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ public class RefactorMenu : ToolStripMenuItem
1010
public RefactorMenu(Boolean createSurroundMenu)
1111
{
1212
this.Text = TextHelper.GetString("Label.Refactor");
13-
this.MoveMenuItem = this.DropDownItems.Add(TextHelper.GetString("Label.Move")) as ToolStripMenuItem;
1413
this.RenameMenuItem = this.DropDownItems.Add(TextHelper.GetString("Label.Rename")) as ToolStripMenuItem;
1514
this.RenameMenuItem.Image = PluginBase.MainForm.FindImage("331");
15+
this.MoveMenuItem = this.DropDownItems.Add(TextHelper.GetString("Label.Move")) as ToolStripMenuItem;
1616
this.ExtractMethodMenuItem = this.DropDownItems.Add(TextHelper.GetString("Label.ExtractMethod"), null) as ToolStripMenuItem;
1717
this.ExtractLocalVariableMenuItem = this.DropDownItems.Add(TextHelper.GetString("Label.ExtractLocalVariable"), null) as ToolStripMenuItem;
1818
this.DelegateMenuItem = this.DropDownItems.Add(TextHelper.GetString("Label.DelegateMethods"), null) as ToolStripMenuItem;

0 commit comments

Comments
 (0)