ソースを参照

Merge pull request #58735 from Calinou/editor-visual-profiler-tweak-frame-time-label

Tweak editor visual profiler frame time label for consistency
Fabio Alessandrelli 3 年 前
コミット
420982dfeb
1 ファイル変更1 行追加1 行削除
  1. 1 1
      editor/debugger/editor_visual_profiler.cpp

+ 1 - 1
editor/debugger/editor_visual_profiler.cpp

@@ -727,7 +727,7 @@ EditorVisualProfiler::EditorVisualProfiler() {
 	hb->add_child(memnew(Label(TTR("Measure:"))));
 	hb->add_child(memnew(Label(TTR("Measure:"))));
 
 
 	display_mode = memnew(OptionButton);
 	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->add_item(TTR("Frame %"));
 	display_mode->connect("item_selected", callable_mp(this, &EditorVisualProfiler::_combo_changed));
 	display_mode->connect("item_selected", callable_mp(this, &EditorVisualProfiler::_combo_changed));