mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-26 18:21:18 -06:00
Fix for #7301 - Endless loop telling me 'Supports work better if the following feature is enabled: bridging perimeters' when setting 'generate support material' on a single object
This bug was from 0c29eb9943
This commit is contained in:
parent
5dfba04e02
commit
871311c95c
2 changed files with 8 additions and 5 deletions
|
|
@ -17,11 +17,14 @@ class ModelConfig;
|
|||
|
||||
namespace GUI {
|
||||
|
||||
// This variable have to be static because of use its value from Preset configuration
|
||||
// and from object/parts configuration from the Settings in sidebar
|
||||
static bool support_material_overhangs_queried {false};
|
||||
|
||||
class ConfigManipulation
|
||||
{
|
||||
bool is_msg_dlg_already_exist{ false };
|
||||
|
||||
bool m_support_material_overhangs_queried{false};
|
||||
bool m_is_initialized_support_material_overhangs_queried{ false };
|
||||
|
||||
// function to loading of changed configuration
|
||||
|
|
@ -63,7 +66,7 @@ public:
|
|||
void initialize_support_material_overhangs_queried(bool queried)
|
||||
{
|
||||
m_is_initialized_support_material_overhangs_queried = true;
|
||||
m_support_material_overhangs_queried = queried;
|
||||
support_material_overhangs_queried = queried;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue