mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
Improvements for Sliced Plates Toolbar (#9313)
* initial * fix scaling related issues * Update GLCanvas3D.cpp * update * Update GLCanvas3D.cpp * Update GLCanvas3D.cpp * Update GLCanvas3D.cpp * Update GLCanvas3D.cpp * Update GLCanvas3D.cpp * update * Update GLCanvas3D.cpp * Update GLCanvas3D.cpp --------- Co-authored-by: Noisyfox <timemanager.rick@gmail.com>
This commit is contained in:
parent
4b33c31106
commit
cc81be0992
13 changed files with 106 additions and 65 deletions
|
@ -3876,7 +3876,8 @@ std::vector<PartPlate*> PartPlateList::get_nonempty_plate_list()
|
|||
{
|
||||
std::vector<PartPlate*> nonempty_plate_list;
|
||||
for (auto plate : m_plate_list){
|
||||
if (plate->get_extruders().size() != 0) {
|
||||
//if (plate->get_extruders().size() != 0) {
|
||||
if (!plate->empty()) { // ORCA counts failed slices as non empty because they have model and should be calculated on total count
|
||||
nonempty_plate_list.push_back(plate);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue