mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 02:07:54 -06:00
Fix issue that thumbnail color not updated properly when AMS slot mapping changes (#7194)
* Fix issue that thumbnail color not updated properly when AMS slot mapping changes
This commit is contained in:
parent
983f1a827e
commit
ae31f4fb1f
2 changed files with 6 additions and 2 deletions
|
@ -5939,7 +5939,7 @@ void GLCanvas3D::render_thumbnail_internal(ThumbnailData& thumbnail_data, const
|
|||
|
||||
ColorRGBA new_color = adjust_color_for_rendering(curr_color);
|
||||
if (ban_light) {
|
||||
new_color[3] = (255 - vol->extruder_id) / 255.0f;
|
||||
new_color[3] =(255 - (vol->extruder_id -1))/255.0f;
|
||||
}
|
||||
vol->model.set_color(new_color);
|
||||
shader->set_uniform("volume_world_matrix", vol->world_matrix());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue