freebsd-ports/cad/PrusaSlicer/files/patch-src_slic3r_GUI_UpdateDialogs.cpp
Teodor Sigaev ea2855f6a7
cad/PrusaSlicer: Update to 2.8.1
PR:		282145
2024-10-29 03:13:29 +08:00

20 lines
823 B
C++

--- src/slic3r/GUI/UpdateDialogs.cpp.orig 2024-09-18 13:39:04 UTC
+++ src/slic3r/GUI/UpdateDialogs.cpp
@@ -153,7 +153,7 @@ AppUpdateDownloadDialog::AppUpdateDownloadDialog( cons
versions->Add(new wxStaticText(this, wxID_ANY, ver_online.to_string()));
content_sizer->Add(versions);
content_sizer->AddSpacer(VERT_SPACING);
-#ifndef __linux__
+#if !defined(__linux__) && !defined(__FreeBSD__)
cbox_run = new wxCheckBox(this, wxID_ANY, _(L("Run installer after download. (Otherwise file explorer will be opened)")));
content_sizer->Add(cbox_run);
#endif
@@ -259,7 +259,7 @@ bool AppUpdateDownloadDialog::run_after_download() con
bool AppUpdateDownloadDialog::run_after_download() const
{
-#ifndef __linux__
+#if !defined(__linux__) && !defined(__FreeBSD__)
return cbox_run->GetValue();
#endif
return false;