Commit c5b5fad 1 parent 6d6f8ad commit c5b5fad Copy full SHA for c5b5fad
File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -198,6 +198,7 @@ void DomePanel::loadDomeFile() {
198
198
if (path.isNull ())
199
199
return ;
200
200
loadDomeFile (path);
201
+ setSphereSelected ();
201
202
}
202
203
203
204
void DomePanel::loadDomeFile (QString path) {
Original file line number Diff line number Diff line change @@ -44,11 +44,13 @@ void ProcessQueue::run() {
44
44
task->wait (100 );
45
45
46
46
if (task->isFinished ()) {
47
- QString msg = task->status == Task::DONE ? " Done" : task->error ;
48
- msg = task->output + " \n " + msg;
49
- emit finished (task->label , msg);
50
-
51
- past.push_back (task);
47
+ if (task->visible ) {
48
+ QString msg = task->status == Task::DONE ? " Done" : task->error ;
49
+ msg = task->output + " \n " + msg;
50
+ emit finished (task->label , msg);
51
+ }
52
+ if (!task->owned )
53
+ past.push_back (task);
52
54
task = nullptr ;
53
55
emit update ();
54
56
}
You can’t perform that action at this time.
0 commit comments