So many links for the errors after slicing take me to a “page not found”. Then i have to come here and dig for an hour trying to find the issue im faced with. This particular link is for the error below.
eried
November 7, 2025, 8:34am
2
Someone has been changing the titles of some wiki articles and breaking the links… but it is crazy how these are hardcoded in bambustudio:
if (notification->get_type() == NotificationType::BBLGcodeOverlap) { notification->close(); }
}
void NotificationManager::bbl_show_bed_filament_incompatible_notification(const std::string& text)
{
auto callback = [](wxEvtHandler*) {
std::string language = wxGetApp().app_config->get("language");
wxString region = L"en";
if (language.find("zh") == 0)
region = L"zh";
const wxString bed_filament_compatibility_wiki = wxString::Format(L"https://wiki.bambulab.com/%s/PLA/PETG-with-bambu-bool-plate-supertack", region);
wxGetApp().open_browser_with_warning_dialog(bed_filament_compatibility_wiki);
return false;
};
push_notification_data({ NotificationType::BBLBedFilamentIncompatible,NotificationLevel::ErrorNotificationLevel,0,_u8L("Error:") + "\n" + text,_u8L("Click Wiki for help."),callback }, 0);
}
void NotificationManager::bbl_close_bed_filament_incompatible_notification()
{
close_notification_of_type(NotificationType::BBLBedFilamentIncompatible);
}
(seems a lot of work to keep them updated vs a centralized list)
I never click those “wiki” links so I haven’t noticed
I dont click after i use the printer for awhile. Like i had the X1C since release and used them at the beginning and they help ALOT! Now i picked up the H2D and they would be helpful.