Merge pull request #537 from daemitus/ime

fix ime window
This commit is contained in:
goaaats 2021-09-04 19:21:11 +02:00 committed by GitHub
commit 1714c641ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;