mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06:00
FIX: slider show custom gcode issue
Jira: STUDIO-4316 Change-Id: I576e35861cd6306b67a0b5bd098eb2a739faf75b (cherry picked from commit 59f80dad826ac81cf66a22a7e35fee87d94f0287)
This commit is contained in:
parent
1da049921c
commit
18a3b8b757
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ void IMSlider::SetTicksValues(const Info &custom_gcode_per_print_z)
|
|||
m_ticks.ticks.clear();
|
||||
const std::vector<CustomGCode::Item> &heights = custom_gcode_per_print_z.gcodes;
|
||||
for (auto h : heights) {
|
||||
int tick = get_tick_from_value(h.print_z);
|
||||
int tick = get_tick_from_value(h.print_z, true);
|
||||
if (tick >= 0) m_ticks.ticks.emplace(TickCode{tick, h.type, h.extruder, h.color, h.extra});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue