Platform IME: add ImGuiPlatformImeData::InputLineHeight (unused by win32). (#3113)

This commit is contained in:
Liu Liu
2022-01-05 13:38:51 +01:00
committed by ocornut
parent 29a8ee0826
commit de36ff043e
3 changed files with 3 additions and 0 deletions

View File

@ -4763,6 +4763,7 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_
{
g.PlatformImeData.WantVisible = true;
g.PlatformImeData.InputPos = ImVec2(cursor_screen_pos.x - 1.0f, cursor_screen_pos.y - g.FontSize);
g.PlatformImeData.InputLineHeight = g.FontSize;
}
}
}