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

Tweak editor visual profiler frame time label for consistency
This commit is contained in:
Fabio Alessandrelli 2022-03-10 12:39:27 +01:00 committed by GitHub
commit 420982dfeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -727,7 +727,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));