mirror of
https://github.com/ppy/osu-tools.git
synced 2025-06-07 23:07:01 +09:00
Split by ,
instead of ,
This commit is contained in:
parent
739a009d48
commit
27ac6b40f1
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ namespace PerformanceCalculatorGUI.Screens
|
|||
}
|
||||
};
|
||||
|
||||
usernameTextBox.OnCommit += (_, _) => { calculateProfiles(usernameTextBox.Current.Value.Split(", ", StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries)); };
|
||||
usernameTextBox.OnCommit += (_, _) => { calculateProfiles(usernameTextBox.Current.Value.Split(",", StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries)); };
|
||||
sorting.ValueChanged += e => { updateSorting(e.NewValue); };
|
||||
includePinnedCheckbox.Current.ValueChanged += e => { calculateProfiles(currentUsers); };
|
||||
onlyDisplayBestCheckbox.Current.ValueChanged += e => { calculateProfiles(currentUsers); };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue