Deleted default value in Plater::export_gcode(bool prefer_removable). Only place where it is not sure what value should be is in btn_reslice - i chose true

This commit is contained in:
David Kocik 2020-06-15 00:34:12 +02:00
parent 1dc3561e2c
commit 864ecf750c
3 changed files with 3 additions and 3 deletions

View file

@ -929,7 +929,7 @@ Sidebar::Sidebar(Plater *parent)
{
const bool export_gcode_after_slicing = wxGetKeyState(WXK_SHIFT);
if (export_gcode_after_slicing)
p->plater->export_gcode();
p->plater->export_gcode(true);
else
p->plater->reslice();
p->plater->select_view_3D("Preview");