1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-19 09:24:27 +00:00

Added menu Edit -> Select all

This commit is contained in:
Enrico Turri
2018-11-21 15:28:35 +01:00
parent c6b597b813
commit 681beeadf6
10 changed files with 77 additions and 8 deletions
+7
View File
@@ -454,6 +454,13 @@ void GLCanvas3DManager::render(wxGLCanvas* canvas) const
it->second->render();
}
void GLCanvas3DManager::select_all(wxGLCanvas* canvas)
{
CanvasesMap::const_iterator it = _get_canvas(canvas);
if (it != m_canvases.end())
it->second->select_all();
}
void GLCanvas3DManager::delete_selected(wxGLCanvas* canvas)
{
CanvasesMap::const_iterator it = _get_canvas(canvas);