Skip to content

Commit c40d941

Browse files
alessandro-olivomarcus-oscarsson
authored andcommitted
Add "disable_processing" to the acquisition parameters, allowing the frontend to hide the processing section in the "Tasks" dialogs
1 parent 268d38f commit c40d941

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mxcubecore/model/queue_model_objects.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ def __init__(self):
17151715
self.in_queue = False
17161716
self.in_interleave = None
17171717
self.sub_wedge_size = 10
1718-
1718+
self.disable_processing = False
17191719
self.num_triggers = int()
17201720
self.num_images_per_trigger = int()
17211721
self.hare_num = 1
@@ -1765,6 +1765,7 @@ def as_dict(self):
17651765
"mesh_center": self.mesh_center,
17661766
"cell_spacing": self.cell_spacing,
17671767
"sub_wedge_size": self.sub_wedge_size,
1768+
"disable_processing": self.disable_processing,
17681769
}
17691770

17701771
def copy(self):

0 commit comments

Comments
 (0)