Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/cad/OrcaSlicer/files/patch-src_slic3r_GUI_PrintHostDialogs.cpp
46591 views
1
--- src/slic3r/GUI/PrintHostDialogs.cpp.orig 2025-10-02 17:32:12 UTC
2
+++ src/slic3r/GUI/PrintHostDialogs.cpp
3
@@ -180,7 +180,7 @@ void PrintHostSendDialog::init()
4
add_button(wxID_CANCEL,false, L("Cancel"));
5
finalize();
6
7
-#ifdef __linux__
8
+#if defined(__linux__) || defined(__FreeBSD__)
9
// On Linux with GTK2 when text control lose the focus then selection (colored background) disappears but text color stay white
10
// and as a result the text is invisible with light mode
11
// see https://github.com/prusa3d/PrusaSlicer/issues/4532
12
@@ -891,7 +891,7 @@ void ElegooPrintHostSendDialog::init() {
13
add_button(wxID_CANCEL, false, _L("Cancel"));
14
finalize();
15
16
-#ifdef __linux__
17
+#if defined(__linux__) || defined(__FreeBSD__)
18
// On Linux with GTK2 when text control lose the focus then selection (colored background) disappears but text color stay white
19
// and as a result the text is invisible with light mode
20
// see https://github.com/prusa3d/PrusaSlicer/issues/4532
21
22