mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-12 06:59:00 +08:00
Dont do force_full_scene_refresh after arrange.
This commit is contained in:
parent
63fada9469
commit
10e86a06cc
@ -1647,17 +1647,13 @@ struct Plater::priv
|
|||||||
void process() override;
|
void process() override;
|
||||||
|
|
||||||
void finalize() override {
|
void finalize() override {
|
||||||
|
// Ignore the arrange result if aborted.
|
||||||
if (was_canceled()) { // Ignore the arrange result if aborted.
|
if (was_canceled()) return;
|
||||||
Job::finalize();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Apply the arrange result to all selected objects
|
// Apply the arrange result to all selected objects
|
||||||
for (ArrangePolygon &ap : m_selected) ap.apply();
|
for (ArrangePolygon &ap : m_selected) ap.apply();
|
||||||
|
|
||||||
// Call original finalize (will update the scene)
|
plater().update(false /*dont force_full_scene_refresh*/);
|
||||||
Job::finalize();
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user