From a8b7870fe2088138c3c28e2336f58c03e09e54ad Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Fri, 14 Feb 2025 15:09:34 +0800 Subject: [PATCH] FIX: fix the APPLE macro jira: [none] Change-Id: Ibcdccbf987776f691bdae8a1ae14e817ccbd90dd --- src/slic3r/GUI/StatusPanel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/StatusPanel.cpp b/src/slic3r/GUI/StatusPanel.cpp index 948c79413..8bd5b408d 100644 --- a/src/slic3r/GUI/StatusPanel.cpp +++ b/src/slic3r/GUI/StatusPanel.cpp @@ -3936,9 +3936,9 @@ void StatusPanel::on_set_chamber_temp() } /*the dialog will be blocked APPLE, let the printer send back message*/ -#ifndef _APPLE +#ifndef __APPLE__ if (champer_switch_head_dlg->ShowModal() != wxID_OK) { return; } -#endif // _APPLE +#endif // __APPLE__ } obj->command_set_chamber(chamber_temp);