mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Dont do force_full_scene_refresh after arrange.
This commit is contained in:
parent
63fada9469
commit
10e86a06cc
1 changed files with 3 additions and 7 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue