Fix spacing issues (#12404)
This commit is contained in:
committed by
GitHub
parent
9d19af7782
commit
0460b09ae5
@@ -721,7 +721,7 @@ void AMSSettingTypePanel::OnAmsTypeChanged(wxCommandEvent& event)
|
||||
return;
|
||||
}
|
||||
|
||||
MessageDialog dlg(this, _L("AMS type switching needs firmware update, taking about 30s. Switch now ?"), SLIC3R_APP_NAME + _L("Info"), wxOK | wxCANCEL | wxICON_INFORMATION);
|
||||
MessageDialog dlg(this, _L("AMS type switching needs firmware update, taking about 30s. Switch now?"), SLIC3R_APP_NAME + _L("Info"), wxOK | wxCANCEL | wxICON_INFORMATION);
|
||||
dlg.SetButtonLabel(wxID_OK, _L("Confirm"));
|
||||
int rtn = dlg.ShowModal();
|
||||
if (rtn != wxID_OK) {
|
||||
|
||||
@@ -10680,7 +10680,7 @@ bool Plater::priv::check_ams_status_impl(bool is_slice_all)
|
||||
: MessageDialog(parent,
|
||||
_L("The nozzle type and AMS quantity information has not been synced from the connected printer.\n"
|
||||
"After syncing, software can optimize printing time and filament usage when slicing.\n"
|
||||
"Would you like to sync now ?"),
|
||||
"Would you like to sync now?"),
|
||||
_L("Warning"), 0)
|
||||
{
|
||||
add_button(wxID_YES, true, _L("Sync now"));
|
||||
|
||||
@@ -3555,7 +3555,7 @@ void SelectMachineDialog::update_show_status(MachineObject* obj_)
|
||||
}
|
||||
|
||||
if (obj_->GetConfig()->HasChamber()) {
|
||||
const auto& msg = wxString::Format(_L("[ %s ] requires printing in a high-temperature environment.Please close the door."), filament_strs);
|
||||
const auto& msg = wxString::Format(_L("[ %s ] requires printing in a high-temperature environment. Please close the door."), filament_strs);
|
||||
show_status(PrintDialogStatus::PrintStatusFilamentWarningHighChamberTempCloseDoor, { msg });
|
||||
if (PrePrintChecker::is_error(PrintDialogStatus::PrintStatusFilamentWarningHighChamberTempCloseDoor)) { return; }
|
||||
} else {
|
||||
|
||||
@@ -1758,7 +1758,7 @@ void Tab::on_value_change(const std::string& opt_key, const boost::any& value)
|
||||
wxString msg_text = _(
|
||||
L("Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their "
|
||||
"intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. "
|
||||
"Please proceed with caution and thoroughly check for any potential printing issues."
|
||||
"Please proceed with caution and thoroughly check for any potential printing issues. "
|
||||
"Are you sure you want to enable this option?"));
|
||||
msg_text += "\n\n" + _(L("Are you sure you want to enable this option?"));
|
||||
MessageDialog dialog(wxGetApp().plater(), msg_text, "", wxICON_WARNING | wxYES | wxNO);
|
||||
|
||||
@@ -1001,7 +1001,7 @@ void FanControlPopupNew::init_names(MachineObject* obj) {
|
||||
air_door_func_name[AIR_DOOR::AIR_DOOR_FUNC_INNERLOOP] = _L("Innerloop");
|
||||
air_door_func_name[AIR_DOOR::AIR_DOOR_FUNC_TOP] = L("Top");/*UNUSED*/
|
||||
|
||||
label_text[AIR_DUCT::AIR_DUCT_NONE] = _L("The fan controls the temperature during printing to improve print quality."
|
||||
label_text[AIR_DUCT::AIR_DUCT_NONE] = _L("The fan controls the temperature during printing to improve print quality. "
|
||||
"The system automatically adjusts the fan's switch and speed "
|
||||
"according to different printing materials.");
|
||||
label_text[AIR_DUCT::AIR_DUCT_COOLING_FILT] = _L("Cooling mode is suitable for printing PLA/PETG/TPU materials and filters the chamber air.");
|
||||
|
||||
Reference in New Issue
Block a user