From 047e5c2e90c78d649904e27f0c876877cbdfaf3a Mon Sep 17 00:00:00 2001 From: "tao.jin" Date: Thu, 8 Dec 2022 14:13:16 +0800 Subject: [PATCH] FIX: refine hint of lacking model repair on mac Change-Id: I3301422a46587cd92ef3688f494dd33f657fbb7c --- src/slic3r/GUI/Plater.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index e2d6ab4ac..125e014c4 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -10944,11 +10944,11 @@ void Plater::show_object_info() auto mesh_errors = p->sidebar->obj_list()->get_mesh_errors_info(&info_manifold, &non_manifold_edges); info_text += into_u8(info_manifold); - #ifdef __APPLE__ + #ifndef __WINDOWS__ if (non_manifold_edges > 0) { info_text += into_u8("\n" + _L("Tips:") + "\n" +_L("\"Fix Model\" feature is currently only on Windows. Please repair the model on Bambu Studio(windows) or CAD softwares.")); } - #endif //APPLE + #endif //APPLE & LINUX notify_manager->bbl_show_objectsinfo_notification(info_text, is_windows10()&&(non_manifold_edges > 0), !(p->current_panel == p->view3D)); }