From 18506854318227c7c410bd6bf1bd0486bc8e3c91 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 18 Feb 2020 10:15:34 +0100 Subject: [PATCH] One more fix for Make compile and works for FreeBSD (#3556) --- src/slic3r/GUI/GUI_Utils.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/slic3r/GUI/GUI_Utils.cpp b/src/slic3r/GUI/GUI_Utils.cpp index 5090382cef..1e452b220e 100644 --- a/src/slic3r/GUI/GUI_Utils.cpp +++ b/src/slic3r/GUI/GUI_Utils.cpp @@ -112,6 +112,9 @@ int get_dpi_for_window(wxWindow *window) #elif defined __APPLE__ // TODO return DPI_DEFAULT; +#else // freebsd and others + // TODO + return DPI_DEFAULT; #endif }