Skip to content

Commit

Permalink
update wiki links(to place holders)
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftFever committed Oct 24, 2023
1 parent ccf5c11 commit 5e0102e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
1 change: 1 addition & 0 deletions doc/Air-filtration(Exhaust-fan).md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WIP
1 change: 1 addition & 0 deletions doc/Auxiliary-fan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WIP
1 change: 1 addition & 0 deletions doc/Chamber-temperature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WIP
8 changes: 4 additions & 4 deletions doc/Print-settings.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Print settings:

* [Seam](Print-settings/Seam)
* [Axiliary fan](Print-settings/auxiliary-fan)
* [Chamber temperature](Print-settings/chamber-temperature)
* [Air filtration](Print-settings/air-filtration)
* [Seam](Seam)
* [Axiliary fan](Auxiliary-fan)
* [Chamber temperature](Chamber-temperature)
* [Air filtration/Exhaust fan](Air-filtration(Exhaust-fan))
File renamed without changes.
2 changes: 1 addition & 1 deletion src/slic3r/GUI/OptionsGroup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1251,7 +1251,7 @@ wxString OptionsGroup::get_url(const std::string& path_end)
str = str.Left(pos) + anchor;
}
// Orca: point to sf wiki for seam parameters
return wxString::Format(L"https://github.com/SoftFever/OrcaSlicer/wiki/Print-settings/%s", from_u8(path_end));
return wxString::Format(L"https://github.com/SoftFever/OrcaSlicer/wiki/%s", from_u8(path_end));

}

Expand Down
12 changes: 6 additions & 6 deletions src/slic3r/GUI/Tab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2726,8 +2726,8 @@ void TabFilament::build()


optgroup = page->new_optgroup(L("Print chamber temperature"), L"param_chamber_temp");
optgroup->append_single_option_line("chamber_temperature", "chamber-temperature");
optgroup->append_single_option_line("activate_chamber_temp_control", "chamber-temperature");
optgroup->append_single_option_line("chamber_temperature", "Chamber-temperature");
optgroup->append_single_option_line("activate_chamber_temp_control", "Chamber-temperature");

optgroup->append_separator();

Expand Down Expand Up @@ -2832,11 +2832,11 @@ void TabFilament::build()
optgroup->append_single_option_line("support_material_interface_fan_speed");

optgroup = page->new_optgroup(L("Auxiliary part cooling fan"), L"param_cooling_fan");
optgroup->append_single_option_line("additional_cooling_fan_speed", "auxiliary-fan");
optgroup->append_single_option_line("additional_cooling_fan_speed", "Auxiliary-fan");

optgroup = page->new_optgroup(L("Exhaust fan"),L"param_cooling_fan");

optgroup->append_single_option_line("activate_air_filtration", "air-filtration");
optgroup->append_single_option_line("activate_air_filtration", "Air-filtration(Exhaust-fan)");

line = {L("During print"), ""};
line.append_option(optgroup->get_option("during_print_exhaust_fan_speed"));
Expand Down Expand Up @@ -3166,8 +3166,8 @@ void TabPrinter::build_fff()
optgroup->append_single_option_line("nozzle_type");
optgroup->append_single_option_line("nozzle_hrc");
optgroup->append_single_option_line("auxiliary_fan", "auxiliary-fan");
optgroup->append_single_option_line("support_chamber_temp_control", "chamber-temperature");
optgroup->append_single_option_line("support_air_filtration", "air-filtration");
optgroup->append_single_option_line("support_chamber_temp_control", "Chamber-temperature");
optgroup->append_single_option_line("support_air_filtration", "Air-filtration(Exhaust-fan)");

const int gcode_field_height = 15; // 150
const int notes_field_height = 25; // 250
Expand Down

0 comments on commit 5e0102e

Please sign in to comment.