1) Added Scale to print volume menu item to objects list context menu

2) Disable [F] key when scale sizmo is dragging
This commit is contained in:
Enrico Turri 2019-05-23 09:20:11 +02:00
parent c92940c985
commit 734d946912
4 changed files with 19 additions and 3 deletions

View file

@ -853,7 +853,9 @@ bool GLGizmosManager::on_char(wxKeyEvent& evt, GLCanvas3D& canvas)
{
if (m_current == Scale)
{
wxGetApp().plater()->scale_selection_to_fit_print_volume();
if (!is_dragging())
wxGetApp().plater()->scale_selection_to_fit_print_volume();
processed = true;
}