Fixes #3209 - Formalize Cancellable Work Pattern and add helpers (#4092)

This commit is contained in:
Tig
2025-06-03 08:12:57 -06:00
committed by GitHub
parent 7490ac9776
commit 764a804ddd
127 changed files with 3720 additions and 1421 deletions

View File

@@ -68,13 +68,13 @@ public class CharacterMap : Scenario
_charMap.SelectedCodePointChanged += (sender, args) =>
{
if (Rune.IsValid (args.CurrentValue))
if (Rune.IsValid (args.Value))
{
jumpEdit.Text = ((Rune)args.CurrentValue).ToString ();
jumpEdit.Text = ((Rune)args.Value).ToString ();
}
else
{
jumpEdit.Text = $"U+{args.CurrentValue:x5}";
jumpEdit.Text = $"U+{args.Value:x5}";
}
};