From e4da00c195b888e7091b961563b0fbc0ff35daf7 Mon Sep 17 00:00:00 2001 From: Vojtech Kral Date: Tue, 27 Nov 2018 16:57:03 +0100 Subject: [PATCH] Enable imgui on Mac --- src/libslic3r/Technologies.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Technologies.hpp b/src/libslic3r/Technologies.hpp index 096fa096e..868003a45 100644 --- a/src/libslic3r/Technologies.hpp +++ b/src/libslic3r/Technologies.hpp @@ -34,7 +34,7 @@ // Enables shortcut keys for gizmos #define ENABLE_GIZMOS_SHORTCUT (1 && ENABLE_1_42_0) // Scene's GUI made using imgui library -#define ENABLE_IMGUI (1 && !__APPLE__ && ENABLE_1_42_0) +#define ENABLE_IMGUI (1 && ENABLE_1_42_0) #endif // _technologies_h_