Fix IME window check

This commit is contained in:
Raymond 2021-09-04 12:59:56 -04:00
parent 888a6245e7
commit 514b665528

View file

@ -28,7 +28,7 @@ namespace Dalamud.Interface.Internal.Windows
{ {
var ime = Service<DalamudIME>.GetNullable(); var ime = Service<DalamudIME>.GetNullable();
if (ime == null || ime.IsEnabled) if (ime == null || !ime.IsEnabled)
{ {
ImGui.Text("IME is unavailable."); ImGui.Text("IME is unavailable.");
return; return;