Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/cad/OrcaSlicer/files/patch-src_slic3r_GUI_CalibrationWizardStartPage.cpp
34610 views
1
--- src/slic3r/GUI/CalibrationWizardStartPage.cpp.orig 2025-10-02 17:32:12 UTC
2
+++ src/slic3r/GUI/CalibrationWizardStartPage.cpp
3
@@ -128,7 +128,7 @@ void CalibrationPAStartPage::create_page(wxWindow* par
4
5
m_top_sizer->Add(m_action_panel, 0, wxEXPAND, 0);
6
7
-#ifdef __linux__
8
+#if defined(__linux__) || defined(__FreeBSD__)
9
wxGetApp().CallAfter([this]() {
10
m_when_content->SetMinSize(m_when_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() });
11
m_about_content->SetMinSize(m_about_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() });
12
@@ -270,7 +270,7 @@ void CalibrationFlowRateStartPage::create_page(wxWindo
13
14
m_top_sizer->Add(m_action_panel, 0, wxEXPAND, 0);
15
16
-#ifdef __linux__
17
+#if defined(__linux__) || defined(__FreeBSD__)
18
wxGetApp().CallAfter([this, auto_cali_content, extra_text]() {
19
m_when_content->SetMinSize(m_when_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() });
20
auto_cali_content->SetMinSize(auto_cali_content->GetSize() + wxSize{ 0, wxWindow::GetCharHeight() });
21
22