Skip to content

Commit 8d74782

Browse files
committed
Fix: Debug/Toggle prints
1 parent 16edfe4 commit 8d74782

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

BabbleApp/calib_settings_widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def render(self, window, event, values):
186186
window[element2].update(float(self.array[count1][count2]))
187187
#values[element2] = float(self.array[count1][count2])
188188
self.refreshed = True
189-
print('DEBUG: Refreshed')
189+
#print('DEBUG: Refreshed')
190190

191191
if self.config.calibration_mode != str(values[self.gui_calibration_mode]):
192192
self.config.calibration_mode = str(values[self.gui_calibration_mode])

BabbleApp/camera_widget.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,15 +304,15 @@ def render(self, window, event, values):
304304
window[self.gui_tracking_layout].update(visible=False)
305305

306306
if event == self.use_calibration:
307-
print("toggle event")
307+
#print("toggle event")
308308
if self.settings_config.use_calibration == True:
309309
window[self.gui_restart_calibration].update(disabled = False)
310310
window[self.gui_stop_calibration].update(disabled = False)
311-
print("Enabled")
311+
#print("Enabled")
312312
else:
313313
window[self.gui_restart_calibration].update(disabled = True)
314314
window[self.gui_stop_calibration].update(disabled = True)
315-
print("Disabled")
315+
#print("Disabled")
316316

317317
if event == "{}+UP".format(self.gui_roi_selection):
318318
# Event for mouse button up in ROI mode

BabbleApp/utils/misc_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def list_camera_names():
104104
return ["Unsupported operating system"]
105105

106106
def list_serial_ports():
107-
print("DEBUG: Listed Serial Ports")
107+
#print("DEBUG: Listed Serial Ports")
108108
""" Lists serial port names
109109
110110
:raises EnvironmentError:

0 commit comments

Comments
 (0)