diff --git a/src/foraging_gui/Dialogs.py b/src/foraging_gui/Dialogs.py index a6803d3e1..d1897b90b 100644 --- a/src/foraging_gui/Dialogs.py +++ b/src/foraging_gui/Dialogs.py @@ -2777,8 +2777,12 @@ def _show_project_names(self): """show the project names""" project_names = self.MainWindow._GetApprovedAINDProjectNames() - # adding project names to the project combobox + # Always keep an explicit unset option as the first entry. + placeholder = "No project set" + self.ProjectName.clear() + self.ProjectName.addItem(placeholder) self.ProjectName.addItems(project_names) + self.ProjectName.setCurrentIndex(0) def _get_basics(self): """get the basic information"""