From 72e8c7c7562ae4902237b725691ac8880a940d35 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 30 Jan 2019 09:07:29 +0100 Subject: [PATCH 1/2] Updated the github issue template --- .github/ISSUE_TEMPLATE.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 133a8aa84b..74dea387ab 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,5 +1,5 @@ ### Version -_Version of Slic3r used goes here_ +_Version of Slic3r Prusa Edition used goes here_ _Use `About->About Slic3r` for release versions_ @@ -7,6 +7,10 @@ _For -dev versions, use `git describe --tag` or get the hash value for the versi ### Operating system type + version _What OS are you using, and state any version #s_ +_In case of 3D rendering issues, please attach the content of menu Help -> System Info dialog_ + +### 3D printer brand / version + firmware version (if known) +_What 3D printer brand / version are you printing on, is it a stock model or did you modify the printer, what firmware is running on your printer, version of the firmware #s_ ### Behavior * _Describe the problem_ @@ -18,5 +22,5 @@ _What OS are you using, and state any version #s_ _Is this a new feature request?_ -#### STL/Config (.ZIP) where problem occurs -_Upload a zipped copy of an STL and your config (`File -> Export Config`)_ +#### Project File (.3MF) where problem occurs +_Upload a Slic3r PE Project File (.3MF) (`Plater -> Export plate as 3MF` for Slic3r PE 1.41.2 and older, `File -> Save` / `Save Project` for Slic3r PE 1.42.0-alpha and newer)_ From 19c1fc0b3f5e44064d239ed9cf42714e2c35e06e Mon Sep 17 00:00:00 2001 From: Enrico Turri Date: Wed, 30 Jan 2019 10:00:38 +0100 Subject: [PATCH 2/2] Hide slicing results after Delete All command --- src/slic3r/GUI/Plater.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 42e404106a..e559be64fd 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1717,6 +1717,8 @@ void Plater::priv::reset() object_list_changed(); update(); + // The hiding of the slicing results, if shown, is not taken care by the background process, so we do it here + this->sidebar->show_sliced_info_sizer(false); auto& config = wxGetApp().preset_bundle->project_config; config.option("colorprint_heights")->values.clear();