Skip to content

Commit 95c871e

Browse files
authored
Merge pull request #3422 from nandishjpatel/fix-fastem-stream-controller
[fix] add additional sp_options arg to FastEMStreamController needed for base class StreamController
2 parents d453032 + 3323c88 commit 95c871e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/odemis/gui/cont/stream.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1382,10 +1382,10 @@ def is_compatible(c):
13821382

13831383
class FastEMStreamController(StreamController):
13841384
def __init__(self, stream_bar, stream, tab_data_model, show_panel=True, view=None,
1385-
sb_ctrl=None):
1385+
sb_ctrl=None, sp_options=None):
13861386
super().__init__(
13871387
stream_bar=stream_bar, stream=stream, tab_data_model=tab_data_model,
1388-
show_panel=show_panel, view=view, sb_ctrl=sb_ctrl
1388+
show_panel=show_panel, view=view, sb_ctrl=sb_ctrl, sp_options=sp_options
13891389
)
13901390

13911391
assert isinstance(stream, acqstream.SEMStream) # don't show for CCD stream

0 commit comments

Comments
 (0)