mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 06:33:57 -06:00
Fix duplicated error message dialog from GUI jobs.
This commit is contained in:
parent
9aac1b6fa5
commit
3135e47180
3 changed files with 28 additions and 7 deletions
|
@ -29,9 +29,10 @@ namespace Slic3r { namespace GUI {
|
|||
class Job : public wxEvtHandler
|
||||
{
|
||||
int m_range = 100;
|
||||
int m_thread_evt_id = wxID_ANY;
|
||||
boost::thread m_thread;
|
||||
std::atomic<bool> m_running{false}, m_canceled{false};
|
||||
bool m_finalized = false;
|
||||
bool m_finalized = false, m_finalizing = false;
|
||||
std::shared_ptr<ProgressIndicator> m_progress;
|
||||
std::exception_ptr m_worker_error = nullptr;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue