Skip to content

Commit 984402d

Browse files
author
Lachlan Grose
committed
progress bar isn't being updated properly for
structural frames
1 parent f8cf221 commit 984402d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

LoopStructural/modelling/features/geological_feature_builder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,16 +98,16 @@ def up_to_date(self,callback=None):
9898
if self._up_to_date == False:
9999
self.update()
100100
if callable(callback):
101-
callback()
101+
callback(1)
102102
return
103103
#check if the interpolator is up to date, if not solve
104104
if self._interpolator.up_to_date == False:
105105
self.update()
106106
if callable(callback):
107-
callback()
107+
callback(1)
108108
return
109109
if callable(callback):
110-
callback()
110+
callback(1)
111111

112112

113113
def add_fault(self, fault):

0 commit comments

Comments
 (0)