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:
authortamasmeszaros <meszaros.q@gmail.com>2018-07-03 13:43:17 +0300
committertamasmeszaros <meszaros.q@gmail.com>2018-07-03 13:43:17 +0300
commit033b7eb8adf79f5635d5cb5bb83d7fea19dde4e9 (patch)
tree0ad85d28ce828d34f01009a53695b6955e8aa846 /xs/src/slic3r/AppControllerWx.cpp
parentf00c17b959c658b8fa228579a21876659865db5a (diff)
Removing progress indicators for individual threads.
Diffstat (limited to 'xs/src/slic3r/AppControllerWx.cpp')
-rw-r--r--xs/src/slic3r/AppControllerWx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/slic3r/AppControllerWx.cpp b/xs/src/slic3r/AppControllerWx.cpp
index e9368c531..84e18373d 100644
--- a/xs/src/slic3r/AppControllerWx.cpp
+++ b/xs/src/slic3r/AppControllerWx.cpp
@@ -296,7 +296,7 @@ void AppController::set_global_progress_indicator(
wxStatusBar* sb = dynamic_cast<wxStatusBar*>(wxWindow::FindWindowById(sid));
if(gauge && sb) {
- global_progressind_ = std::make_shared<Wrapper>(gauge, sb, *this);
+ global_progress_indicator(std::make_shared<Wrapper>(gauge, sb, *this));
}
}