Merge branch 'main' into dev/h2d

This commit is contained in:
Noisyfox
2025-10-18 19:20:09 +08:00
committed by GitHub
3 changed files with 6 additions and 1 deletions

View File

@@ -1059,6 +1059,10 @@ void ImGuiWrapper::tooltip(const char *label, float wrap_width)
ImGui::EndTooltip();
}
void ImGuiWrapper::tooltip(const std::string &label, float wrap_width) {
tooltip(label.c_str(), wrap_width);
}
void ImGuiWrapper::tooltip(const wxString &label, float wrap_width)
{
ImGui::BeginTooltip();