fix: Fix CI failure with ImGui::SetTooltip() (#1672)
This commit is contained in:
parent
e2dd12416c
commit
240bb299f0
@ -1156,7 +1156,7 @@ namespace hex::plugin::builtin {
|
|||||||
patternDrawer->draw(patterns, &runtime, 150_scaled);
|
patternDrawer->draw(patterns, &runtime, 150_scaled);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
ImGui::SetTooltip("hex.builtin.view.pattern_editor.sections.view"_lang);
|
ImGui::SetTooltip("%s", "hex.builtin.view.pattern_editor.sections.view"_lang.get().c_str());
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if (ImGuiExt::DimmedIconButton(ICON_VS_SAVE_AS, ImGui::GetStyleColorVec4(ImGuiCol_Text))) {
|
if (ImGuiExt::DimmedIconButton(ICON_VS_SAVE_AS, ImGui::GetStyleColorVec4(ImGuiCol_Text))) {
|
||||||
fs::openFileBrowser(fs::DialogMode::Save, {}, [id, &runtime](const auto &path) {
|
fs::openFileBrowser(fs::DialogMode::Save, {}, [id, &runtime](const auto &path) {
|
||||||
@ -1169,7 +1169,7 @@ namespace hex::plugin::builtin {
|
|||||||
file.writeVector(runtime.getSection(id));
|
file.writeVector(runtime.getSection(id));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
ImGui::SetTooltip("hex.builtin.view.pattern_editor.sections.export"_lang);
|
ImGui::SetTooltip("%s", (const char*)"hex.builtin.view.pattern_editor.sections.export"_lang.get().c_str());
|
||||||
|
|
||||||
ImGui::PopID();
|
ImGui::PopID();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user