Преглед изворни кода

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