소스 검색

Tweak editor visual profiler frame time label for consistency

This is consistent with the general profiler's frame time label.
Hugo Locurcio 3 년 전
부모
커밋
47c23da448
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      editor/debugger/editor_visual_profiler.cpp

+ 1 - 1
editor/debugger/editor_visual_profiler.cpp

@@ -724,7 +724,7 @@ EditorVisualProfiler::EditorVisualProfiler() {
 	hb->add_child(memnew(Label(TTR("Measure:"))));
 
 	display_mode = memnew(OptionButton);
-	display_mode->add_item(TTR("Frame Time (msec)"));
+	display_mode->add_item(TTR("Frame Time (ms)"));
 	display_mode->add_item(TTR("Frame %"));
 	display_mode->connect("item_selected", callable_mp(this, &EditorVisualProfiler::_combo_changed));