GCodeViewer -> Fixed crash when importing gcode files generated by older versions of PrusaSlicer
This commit is contained in:
parent
7c01ddf996
commit
7cd402dcd0
@ -3429,11 +3429,17 @@ void GCodeViewer::render_legend() const
|
|||||||
std::string first_str = _u8L("First layer");
|
std::string first_str = _u8L("First layer");
|
||||||
std::string total_str = _u8L("Total");
|
std::string total_str = _u8L("Total");
|
||||||
|
|
||||||
float max_len = 10.0f + ImGui::GetStyle().ItemSpacing.x + std::max(ImGui::CalcTextSize(first_str.c_str()).x, ImGui::CalcTextSize(total_str.c_str()).x);
|
float max_len = 10.0f + ImGui::GetStyle().ItemSpacing.x;
|
||||||
|
if (time_mode.layers_times.empty())
|
||||||
|
max_len += ImGui::CalcTextSize(total_str.c_str()).x;
|
||||||
|
else
|
||||||
|
max_len += std::max(ImGui::CalcTextSize(first_str.c_str()).x, ImGui::CalcTextSize(total_str.c_str()).x);
|
||||||
|
|
||||||
imgui.text(first_str + ":");
|
if (!time_mode.layers_times.empty()) {
|
||||||
ImGui::SameLine(max_len);
|
imgui.text(first_str + ":");
|
||||||
imgui.text(short_time(get_time_dhms(time_mode.layers_times.front())));
|
ImGui::SameLine(max_len);
|
||||||
|
imgui.text(short_time(get_time_dhms(time_mode.layers_times.front())));
|
||||||
|
}
|
||||||
|
|
||||||
imgui.text(total_str + ":");
|
imgui.text(total_str + ":");
|
||||||
ImGui::SameLine(max_len);
|
ImGui::SameLine(max_len);
|
||||||
|
Loading…
Reference in New Issue
Block a user