mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00: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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user