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-07-26 21:16:17 +02:00
parent 1dc3561e2c
commit 864ecf750c
3 changed files with 3 additions and 3 deletions
+1 -1
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");