mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
This commit is contained in:
@@ -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}";
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user