1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 05:19:56 +08:00

trim timestamp when pasting into TimeInfoContainer

This commit is contained in:
Hivie
2025-11-28 01:40:07 +01:00
Unverified
parent 8f927ea7b5
commit c6eba26a67
@@ -151,7 +151,7 @@ namespace osu.Game.Screens.Edit.Components
});
};
inputTextBox.Current.BindValueChanged(val => editor?.HandleTimestamp(val.NewValue));
inputTextBox.Current.BindValueChanged(val => editor?.HandleTimestamp(val.NewValue.Trim()));
inputTextBox.OnCommit += (_, __) =>
{