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.
2 parents 1967748 + 8c27b5e commit 9ce5beaCopy full SHA for 9ce5bea
runviewer/__main__.py
@@ -697,6 +697,9 @@ def on_remove_shots(self, confirm=True):
697
# unselect shot
698
item.setCheckState(Qt.Unchecked)
699
shutter_item.setCheckState(Qt.Unchecked)
700
+ # remove shot from markers list
701
+ shot_combobox_index = self.ui.markers_comboBox.findText(os.path.basename(shot.path))
702
+ self.ui.markers_comboBox.removeItem(shot_combobox_index)
703
# remove row
704
self.shot_model.removeRow(row)
705
del shot
0 commit comments