Show full timespan in editor incl. seconds

This commit is contained in:
2026-05-06 17:31:27 +02:00
parent 2f05a0987e
commit 627f3a2dec
@@ -42,7 +42,7 @@ namespace FlaxEditor.CustomEditors.Editors
base.Refresh();
_isRefreshing = true;
_textBox.Text = HasDifferentValues ? "Multiple Values" : ((TimeSpan)Values[0]).ToString("g");
_textBox.Text = HasDifferentValues ? "Multiple Values" : ((TimeSpan)Values[0]).ToString("G");
_isRefreshing = false;
}
}