From f0740ff9a69cc48dfb02b669c248ec186763481b Mon Sep 17 00:00:00 2001 From: rabbitism Date: Sat, 16 Mar 2024 17:55:11 +0800 Subject: [PATCH] fix issue #8 --- src/Ursa/Controls/IPv4Box.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Ursa/Controls/IPv4Box.cs b/src/Ursa/Controls/IPv4Box.cs index 0a232f3..1163c37 100644 --- a/src/Ursa/Controls/IPv4Box.cs +++ b/src/Ursa/Controls/IPv4Box.cs @@ -157,6 +157,10 @@ public class IPv4Box: TemplatedControl { Paste(); } + else if (keymap is not null && Match(keymap.Cut)) + { + Cut(); + } if (e.Key == Key.Tab) { _currentActivePresenter?.HideCaret();