mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 00:37:51 -06:00
Added Esc shortcut and menu item for command deselect all
This commit is contained in:
parent
c4c292168d
commit
14c4469cbf
10 changed files with 55 additions and 18 deletions
|
@ -99,6 +99,12 @@ void View3D::select_all()
|
|||
m_canvas->select_all();
|
||||
}
|
||||
|
||||
void View3D::deselect_all()
|
||||
{
|
||||
if (m_canvas != nullptr)
|
||||
m_canvas->deselect_all();
|
||||
}
|
||||
|
||||
void View3D::delete_selected()
|
||||
{
|
||||
if (m_canvas != nullptr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue