FIX: assemly view operation didn't update wipe tower

Jira: STUDIO-3307 STUDIO-3164

Change-Id: Iad6dc3df59d55e35abb313e9287df0f3b4485fe3
This commit is contained in:
liz.li 2023-06-13 16:30:29 +08:00 committed by Lane.Wei
parent 1e99ce9535
commit 4f356c70eb

View file

@ -2758,6 +2758,7 @@ Plater::priv::priv(Plater *q, MainFrame *main_frame)
assemble_canvas->Bind(EVT_GLCANVAS_OBJECT_SELECT, &priv::on_object_select, this);
assemble_canvas->Bind(EVT_GLVIEWTOOLBAR_3D, [q](SimpleEvent&) { q->select_view_3D("3D"); });
assemble_canvas->Bind(EVT_GLCANVAS_RIGHT_CLICK, &priv::on_right_click, this);
assemble_canvas->Bind(EVT_GLCANVAS_FORCE_UPDATE, [this](SimpleEvent&) { update(); });
assemble_canvas->Bind(EVT_GLCANVAS_UNDO, [this](SimpleEvent&) { this->undo(); });
assemble_canvas->Bind(EVT_GLCANVAS_REDO, [this](SimpleEvent&) { this->redo(); });
}