Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ def connexion_slot(self, signal):
self.connect_but.adjustSize()
self.update_imu = True
location = WIDTH, 0
if 'FFC-4P' not in test_type:
if 'FFC' not in test_type:
if 'SR' not in test_type:
self.rgb = Camera(lambda: self.depth_camera.get_image('RGB'), colorMode, 'RGB Preview', location)
self.rgb.show()
Expand Down Expand Up @@ -1614,7 +1614,7 @@ def close_event(self, event):

def disconnect(self):
if hasattr(self, 'depth_camera'):
if 'FFC-4P' not in test_type:
if 'FFC' not in test_type:
if 'SR' not in test_type:
del self.rgb
del self.jpeg
Expand Down