mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-22 12:38:08 +08:00
Merge branch 'master' of https://github.com/prusa3d/PrusaSlicer into et_gcode_viewer
This commit is contained in:
commit
cd45b78c48
@ -371,7 +371,7 @@ bool ImGuiWrapper::checkbox(const wxString &label, bool &value)
|
||||
|
||||
void ImGuiWrapper::text(const char *label)
|
||||
{
|
||||
ImGui::Text(label, NULL);
|
||||
ImGui::Text("%s", label);
|
||||
}
|
||||
|
||||
void ImGuiWrapper::text(const std::string &label)
|
||||
@ -387,7 +387,7 @@ void ImGuiWrapper::text(const wxString &label)
|
||||
|
||||
void ImGuiWrapper::text_colored(const ImVec4& color, const char* label)
|
||||
{
|
||||
ImGui::TextColored(color, label);
|
||||
ImGui::TextColored(color, "%s", label);
|
||||
}
|
||||
|
||||
void ImGuiWrapper::text_colored(const ImVec4& color, const std::string& label)
|
||||
|
Loading…
x
Reference in New Issue
Block a user