From 0ff1f59c818b0ded8c4666704d0af30648f2e178 Mon Sep 17 00:00:00 2001 From: Micah Woodard Date: Fri, 24 Jul 2026 08:59:09 -0700 Subject: [PATCH] adds no project set default" --- src/foraging_gui/Dialogs.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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"""