@@ -68,12 +68,13 @@ def __init__(self, parent=None):
68
68
self .save_camera_config_button .setIcon (QIcon (os .path .join (self .paths ["assets_dir" ], "save.svg" )))
69
69
self .save_camera_config_button .setFixedHeight (30 )
70
70
self .save_camera_config_button .clicked .connect (self .save_experiment_config )
71
+ self .save_camera_config_button .setToolTip ("Save the current camera configuration" )
71
72
72
73
# Load layout button
73
74
self .load_experiment_config_button = QPushButton ("Load" )
74
- # self.load_experiment_config_button.setIcon(QIcon(os.path.join(self.paths["assets_dir"], "upload.svg")))
75
75
self .load_experiment_config_button .setFixedHeight (30 )
76
76
self .load_experiment_config_button .clicked .connect (self .load_experiment_config )
77
+ self .load_experiment_config_button .setToolTip ("Load a saved camera configuration" )
77
78
78
79
# Config layout
79
80
self .config_hlayout = QHBoxLayout ()
@@ -93,6 +94,7 @@ def __init__(self, parent=None):
93
94
self .save_dir_button .setFixedWidth (30 )
94
95
self .save_dir_button .setFixedHeight (30 )
95
96
self .save_dir_button .clicked .connect (self .get_save_dir )
97
+ self .save_dir_button .setToolTip ("Change the directory to save data" )
96
98
97
99
# Display the save directory
98
100
self .save_dir_textbox = QPlainTextEdit (self .paths ["data_dir" ])
@@ -118,6 +120,7 @@ def __init__(self, parent=None):
118
120
self .start_recording_button .setFixedHeight (30 )
119
121
self .start_recording_button .clicked .connect (self .start_recording )
120
122
self .start_recording_button .setEnabled (False )
123
+ self .start_recording_button .setToolTip ("Start recording all cameras" )
121
124
122
125
# Button for stopping recording
123
126
self .stop_recording_button = QPushButton ("" )
@@ -126,6 +129,8 @@ def __init__(self, parent=None):
126
129
self .stop_recording_button .setFixedHeight (30 )
127
130
self .stop_recording_button .clicked .connect (self .stop_recording )
128
131
self .stop_recording_button .setEnabled (False )
132
+ self .stop_recording_button .setToolTip ("Stop recording all cameras" )
133
+
129
134
130
135
self .control_all_hlayout = QHBoxLayout ()
131
136
self .control_all_hlayout .addWidget (self .start_recording_button )
0 commit comments