We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e3122d commit c15fc9fCopy full SHA for c15fc9f
runviewer/__main__.py
@@ -696,6 +696,9 @@ def on_remove_shots(self, confirm=True):
696
# unselect shot
697
item.setCheckState(Qt.Unchecked)
698
shutter_item.setCheckState(Qt.Unchecked)
699
+ # remove shot from markers list
700
+ shot_combobox_index = self.ui.markers_comboBox.findText(os.path.basename(shot.path))
701
+ self.ui.markers_comboBox.removeItem(shot_combobox_index)
702
# remove row
703
self.shot_model.removeRow(row)
704
del shot
0 commit comments