mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-16 15:05:57 +08:00
Fixed warning
This commit is contained in:
parent
200df9c02d
commit
b66402c62d
@ -2271,7 +2271,7 @@ void GCodeViewer::load_shells(const Print& print)
|
||||
|
||||
// removes volumes which are completely below bed
|
||||
int i = 0;
|
||||
while (i < m_shells.volumes.volumes.size()) {
|
||||
while (i < (int)m_shells.volumes.volumes.size()) {
|
||||
GLVolume* v = m_shells.volumes.volumes[i];
|
||||
if (v->transformed_bounding_box().max.z() < SINKING_MIN_Z_THRESHOLD + EPSILON) {
|
||||
delete v;
|
||||
|
Loading…
x
Reference in New Issue
Block a user