Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-08-05 09:44:55 +0300
committerYuSanka <yusanka@gmail.com>2019-08-05 09:44:55 +0300
commitf712e5fcf4cb44d61fd9f095058b2609e9f169be (patch)
treeb46e5454d968e37ef9bbc33bf7f9789ac96aeed2 /src/slic3r/GUI/Selection.cpp
parent885da355443f46deffd7ae7c0a9845a3e5ab69c6 (diff)
Implemented set printable state for ObjectList
Diffstat (limited to 'src/slic3r/GUI/Selection.cpp')
-rw-r--r--src/slic3r/GUI/Selection.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/slic3r/GUI/Selection.cpp b/src/slic3r/GUI/Selection.cpp
index 4e7b4e4ad..630ecd1d4 100644
--- a/src/slic3r/GUI/Selection.cpp
+++ b/src/slic3r/GUI/Selection.cpp
@@ -1479,6 +1479,8 @@ void Selection::toggle_instance_printable_state()
if ((volume->object_idx() == obj_idx) && (volume->instance_idx() == instance_idx))
volume->printable = instance->printable;
}
+
+ wxGetApp().obj_list()->update_printable_state(obj_idx, instance_idx);
}
}
}