From d7688a27d019b03f2c120d90e8235242de0391c3 Mon Sep 17 00:00:00 2001 From: Wegerich Date: Thu, 18 Jun 2026 11:46:51 +0100 Subject: [PATCH] APA for overhangs - Prusa incompatibility warning (#14271) * APA for overhangs - Prusa incompatibility warning Added a sentence explicitly stating that APA for overhangs is not compatible with prusa printers * whitespace --- src/libslic3r/PrintConfig.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 966d1629b0..49b74f9f61 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2394,7 +2394,8 @@ void PrintConfigDef::init_fff_params() def = this->add("adaptive_pressure_advance_overhangs", coBools); def->label = L("Enable adaptive pressure advance for overhangs (beta)"); def->tooltip = L("Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, " - "as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"); + "as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" + "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBools{ false });