Skip to content

Commit 4b2ecde

Browse files
committed
Update IMEHandler.cs
1 parent 852d474 commit 4b2ecde

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ClientGUI/IME/IMEHandler.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
#nullable enable
22
using System;
33
using System.Collections.Concurrent;
4-
using System.Collections.Generic;
54
using System.Diagnostics;
65

76
using Microsoft.Xna.Framework;
87

9-
using Rampastring.XNAUI;
108
using Rampastring.XNAUI.Input;
119
using Rampastring.XNAUI.XNAControls;
1210

@@ -144,9 +142,11 @@ void IIMEHandler.RegisterXNATextBox(XNATextBox sender, Action<char>? handleCharI
144142
void IIMEHandler.KillXNATextBox(XNATextBox sender) =>
145143
TextBoxHandleChatInputCallbacks.TryRemove(sender, out _);
146144

147-
bool IIMEHandler.HandleScrollLeftKey(XNATextBox sender) => !CompositionEmpty;
145+
bool IIMEHandler.HandleScrollLeftKey(XNATextBox sender) =>
146+
!CompositionEmpty;
148147

149-
bool IIMEHandler.HandleScrollRightKey(XNATextBox sender) => !CompositionEmpty;
148+
bool IIMEHandler.HandleScrollRightKey(XNATextBox sender) =>
149+
!CompositionEmpty;
150150

151151
bool IIMEHandler.HandleBackspaceKey(XNATextBox sender)
152152
{

0 commit comments

Comments
 (0)