From af59b8b05968095b6d34749747a18f78f6012b9e Mon Sep 17 00:00:00 2001 From: Alek-ban Date: Mon, 8 Jun 2026 07:31:26 +0300 Subject: [PATCH] fix: TouchTextBox remove comment --- GSS2/Controls/TouchTextBox.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GSS2/Controls/TouchTextBox.cs b/GSS2/Controls/TouchTextBox.cs index 0c233a4..54c37c0 100644 --- a/GSS2/Controls/TouchTextBox.cs +++ b/GSS2/Controls/TouchTextBox.cs @@ -18,8 +18,8 @@ public class TouchTextBox : TextBox private void OnPointerPressed(object? sender, PointerPressedEventArgs ea) { - // if (ea.Pointer.Type != PointerType.Touch) - // return; + if (ea.Pointer.Type != PointerType.Touch) + return; var navigation = (Application.Current as Application)?.Navigation; if (navigation is null) return;