mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
Show wait cursor when exporting an STL.
Fix of SLA gizmo picking by rectangle: point is occluded only if an object is half its radius away from the point center. Don't show the temp G-code file name in the status bar when exporting.
This commit is contained in:
parent
14b4685ecb
commit
53ccac6925
3 changed files with 9 additions and 4 deletions
|
@ -1506,7 +1506,8 @@ void Print::export_gcode(const std::string &path_template, GCodePreviewData *pre
|
|||
// The following call may die if the output_filename_format template substitution fails.
|
||||
std::string path = this->output_filepath(path_template);
|
||||
std::string message = "Exporting G-code";
|
||||
if (! path.empty()) {
|
||||
if (! path.empty() && preview_data == nullptr) {
|
||||
// Only show the path if preview_data is not set -> running from command line.
|
||||
message += " to ";
|
||||
message += path;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue