浏览代码

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));