Browse Source

Added "Editor" flag to Rename Symbols

Brian Fiete 3 tháng trước cách đây
mục cha
commit
7fe6082686
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      IDE/src/Commands.bf

+ 1 - 1
IDE/src/Commands.bf

@@ -295,7 +295,7 @@ namespace IDE
 			Add("Reload Settings", new => gApp.ReloadSettings);
 			Add("Reload Settings", new => gApp.ReloadSettings);
 			Add("Remove All Breakpoints", new => gApp.[Friend]RemoveAllBreakpoints);
 			Add("Remove All Breakpoints", new => gApp.[Friend]RemoveAllBreakpoints);
 			Add("Rename Item", new => gApp.Cmd_RenameItem);
 			Add("Rename Item", new => gApp.Cmd_RenameItem);
-			Add("Rename Symbol", new => gApp.Cmd_RenameSymbol);
+			Add("Rename Symbol", new => gApp.Cmd_RenameSymbol, .Editor);
 			Add("Replace in Document", new => gApp.Cmd_Document__Replace);
 			Add("Replace in Document", new => gApp.Cmd_Document__Replace);
 			Add("Replace in Files", new => gApp.Cmd_Replace);
 			Add("Replace in Files", new => gApp.Cmd_Replace);
 			Add("Report Memory", new => gApp.[Friend]ReportMemory);
 			Add("Report Memory", new => gApp.[Friend]ReportMemory);