diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-03-04 08:50:41 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-03-04 08:50:41 +0100 |
commit | 47c23da44882c102c4ce132947e703bddee37cf8 (patch) | |
tree | 58e980f348e2ce7574c92fa91fd457abbaa301cb | |
parent | d0c3094da8fb3ec2ffb0b88df464979abebefe85 (diff) |
Tweak editor visual profiler frame time label for consistency
This is consistent with the general profiler's frame time label.
-rw-r--r-- | editor/debugger/editor_visual_profiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/debugger/editor_visual_profiler.cpp b/editor/debugger/editor_visual_profiler.cpp index 2a1b0029d4..5abfb5b51d 100644 --- a/editor/debugger/editor_visual_profiler.cpp +++ b/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)); |