Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2021-04-08 16:29:40 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-04-08 16:29:40 +0300
commit8fd731f7a094854770e42d7f075e3946681ed3b1 (patch)
treea726d37c5f05e6281a6a339bb3ad6f5aa76d2e2f /src/PrusaSlicer_app_msvc.cpp
parent0db55a0699b765ae91af4f9fa8c0d3dce35e7169 (diff)
New FDM support sparse infill zig-zag algorithm.
Fixed some old support and infill issues. Fixes support problem #4295 Fixes Parts of interface layer extends beyond supports and cannot be printed Fixes support missing under horizontal overhang #6058 Fixes Slicer double-traces small sections of Rectilinear Supports, causes Fixes plastic buildup and nozzle crashes #4951 Fixes Add "Angle Interface layers" #2969
Diffstat (limited to 'src/PrusaSlicer_app_msvc.cpp')
-rw-r--r--src/PrusaSlicer_app_msvc.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/PrusaSlicer_app_msvc.cpp b/src/PrusaSlicer_app_msvc.cpp
index 7710d9eb7..2ccf2f1ff 100644
--- a/src/PrusaSlicer_app_msvc.cpp
+++ b/src/PrusaSlicer_app_msvc.cpp
@@ -217,6 +217,11 @@ int APIENTRY wWinMain(HINSTANCE /* hInstance */, HINSTANCE /* hPrevInstance */,
int wmain(int argc, wchar_t **argv)
{
#endif
+ // Allow the asserts to open message box, such message box allows to ignore the assert and continue with the application.
+ // Without this call, the seemingly same message box is being opened by the abort() function, but that is too late and
+ // the application will be killed even if "Ignore" button is pressed.
+ _set_error_mode(_OUT_TO_MSGBOX);
+
std::vector<wchar_t*> argv_extended;
argv_extended.emplace_back(argv[0]);