blob: 5202d514dd53aa79871715bf763dfc52becdcf9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/slic3r/GUI/OptionsGroup.cpp.orig 2024-12-20 11:54:34 UTC
+++ src/slic3r/GUI/OptionsGroup.cpp
@@ -1234,7 +1234,7 @@ void ogStaticText::SetPathEnd(const std::string& link)
void ogStaticText::SetPathEnd(const std::string& link)
{
-#ifndef __linux__
+#if !defined(__linux__) && !defined(__FreeBSD__)
Bind(wxEVT_ENTER_WINDOW, [this, link](wxMouseEvent& event) {
SetToolTip(OptionsGroup::get_url(get_app_config()->get("suppress_hyperlinks") != "1" ? link : std::string()));
@@ -1287,7 +1287,7 @@ void ogStaticText::FocusText(bool focus)
SetFont(focus ? Slic3r::GUI::wxGetApp().link_font() :
Slic3r::GUI::wxGetApp().normal_font());
-#ifdef __linux__
+#if defined(__linux__) || defined(__FreeBSD__)
this->GetContainingSizer()->Layout();
#endif
Refresh();
|