Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2020-03-11 20:25:05 +0300
committerbubnikv <bubnikv@gmail.com>2020-03-11 20:25:05 +0300
commit6664a548d6114e0f7a411df26f1b990135901106 (patch)
tree2e9629142d23323bc059402321b9f66380153867
parentbbf212d5f692bb660fa09f3fd8d802d090492eca (diff)
Show busy cursor on eject, improvesversion_2.2.0-rc3
2.2.0-RC Eject is very slow in Linux #3795
-rw-r--r--src/slic3r/GUI/Plater.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp
index 0beddc358..224eb42fd 100644
--- a/src/slic3r/GUI/Plater.cpp
+++ b/src/slic3r/GUI/Plater.cpp
@@ -5232,6 +5232,7 @@ void Plater::send_gcode()
// Called when the Eject button is pressed.
void Plater::eject_drive()
{
+ wxBusyCursor wait;
wxGetApp().removable_drive_manager()->eject_drive();
}